-- GPS服务配置表
|
drop table if exists sys_gps_config;
|
create table sys_gps_config (
|
config_id bigint(20) not null auto_increment comment '配置ID',
|
config_key varchar(50) not null comment '配置键值',
|
lastquerypositiontime BIGINT DEFAULT NULL COMMENT '最后查询位置时间',
|
domain varchar(255) default '' comment '服务域名',
|
username varchar(50) default '' comment '用户名',
|
password varchar(50) default '' comment '密码',
|
token varchar(500) default '' comment '访问令牌',
|
token_expire_time datetime comment '令牌过期时间',
|
create_by varchar(64) default '' comment '创建者',
|
create_time datetime comment '创建时间',
|
update_by varchar(64) default '' comment '更新者',
|
update_time datetime comment '更新时间',
|
remark varchar(500) default null comment '备注',
|
primary key (config_id),
|
unique key (config_key)
|
) engine=innodb auto_increment=100 comment = 'GPS服务配置表';
|