|
@@ -62,9 +62,9 @@ CREATE TABLE ms_suspected (
|
|
DROP TABLE IF EXISTS ms_trip;
|
|
DROP TABLE IF EXISTS ms_trip;
|
|
CREATE TABLE ms_trip (
|
|
CREATE TABLE ms_trip (
|
|
trip_id bigint(20) NOT NULL DEFAULT 0 COMMENT '出行ID:和疑似ID一对一关系',
|
|
trip_id bigint(20) NOT NULL DEFAULT 0 COMMENT '出行ID:和疑似ID一对一关系',
|
|
- work_local bigint(20) NOT NULL DEFAULT 0 COMMENT '工作驻地:0未填写,1武汉市,2宜昌市,3当阳市,其他地点',
|
|
|
|
|
|
+ work_local int(11) NOT NULL DEFAULT 0 COMMENT '工作驻地:0未填写,1武汉市,2宜昌市,3当阳市,其他地点',
|
|
work_local_other varchar(50) NOT NULL DEFAULT '' COMMENT '工作驻地其他地点',
|
|
work_local_other varchar(50) NOT NULL DEFAULT '' COMMENT '工作驻地其他地点',
|
|
- today_local bigint(20) NOT NULL DEFAULT 0 COMMENT '今日驻地:0未填写,1武汉市,2宜昌市,3当阳市,其他地点',
|
|
|
|
|
|
+ today_local int(11) NOT NULL DEFAULT 0 COMMENT '今日驻地:0未填写,1武汉市,2宜昌市,3当阳市,其他地点',
|
|
today_local_other varchar(50) NOT NULL DEFAULT '' COMMENT '今日驻地其他地点',
|
|
today_local_other varchar(50) NOT NULL DEFAULT '' COMMENT '今日驻地其他地点',
|
|
is_trip int(11) NOT NULL DEFAULT 0 COMMENT '是否出行:0否,1是',
|
|
is_trip int(11) NOT NULL DEFAULT 0 COMMENT '是否出行:0否,1是',
|
|
user_create bigint(20) NOT NULL DEFAULT 0 COMMENT '新增人',
|
|
user_create bigint(20) NOT NULL DEFAULT 0 COMMENT '新增人',
|
|
@@ -83,9 +83,9 @@ CREATE TABLE ms_trip_det (
|
|
trip_det_id bigint(20) NOT NULL DEFAULT 0 COMMENT '出行详细ID',
|
|
trip_det_id bigint(20) NOT NULL DEFAULT 0 COMMENT '出行详细ID',
|
|
trip_id bigint(20) NOT NULL DEFAULT 0 COMMENT '出行ID:和疑似ID一对一关系',
|
|
trip_id bigint(20) NOT NULL DEFAULT 0 COMMENT '出行ID:和疑似ID一对一关系',
|
|
sort int(11) NOT NULL DEFAULT 0 COMMENT '序号',
|
|
sort int(11) NOT NULL DEFAULT 0 COMMENT '序号',
|
|
- start_local bigint(20) NOT NULL DEFAULT 0 COMMENT '出发地:0未填写,1武汉市,2宜昌市,3当阳市,其他地点',
|
|
|
|
|
|
+ start_local int(11) NOT NULL DEFAULT 0 COMMENT '出发地:0未填写,1武汉市,2宜昌市,3当阳市,其他地点',
|
|
start_local_other varchar(50) NOT NULL DEFAULT '' COMMENT '出发地其他地点',
|
|
start_local_other varchar(50) NOT NULL DEFAULT '' COMMENT '出发地其他地点',
|
|
- end_local bigint(20) NOT NULL DEFAULT 0 COMMENT '目的地:0未填写,1武汉市,2宜昌市,3当阳市,其他地点',
|
|
|
|
|
|
+ end_local int(11) NOT NULL DEFAULT 0 COMMENT '目的地:0未填写,1武汉市,2宜昌市,3当阳市,其他地点',
|
|
end_local_other varchar(50) NOT NULL DEFAULT '' COMMENT '目的地其他地点',
|
|
end_local_other varchar(50) NOT NULL DEFAULT '' COMMENT '目的地其他地点',
|
|
trip_type int(11) NOT NULL DEFAULT 0 COMMENT '出行方式:0未填写,1长途汽车,2火车,3飞机',
|
|
trip_type int(11) NOT NULL DEFAULT 0 COMMENT '出行方式:0未填写,1长途汽车,2火车,3飞机',
|
|
user_create bigint(20) NOT NULL DEFAULT 0 COMMENT '新增人',
|
|
user_create bigint(20) NOT NULL DEFAULT 0 COMMENT '新增人',
|