# 第三方背景筛查 drop table if EXISTS third_train_background; create table third_train_background ( id bigint not null primary key, active bit default true not null comment '是否有效', create_time datetime not null comment '创建时间', update_time datetime not null comment '修改时间', business_type varchar(10) comment '第三方业务类型,01等级证,02资格证', business_id varchar(50) comment '第三方业务id', real_name varchar(20) comment '姓名', id_number varchar(20) comment '身份证号', userid bigint null comment '用户id', screening_results varchar(10) comment '筛查结果' ) comment '第三方背景筛查';