123456789 |
- -- 企业用户白名单 t_white_list
- create table t_white_list(
- id int not null auto_increment comment 'id',
- enuu int not null default 0 comment '用户企业uu',
- useruu int not null default 0 comment '用户uu',
- create_time timestamp not null default current_timestamp comment '创建时间',
- update_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
- primary key(id) comment '主键,没有重复'
- )ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT '企业用户白名单';
|