You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
2.5 KiB
32 lines
2.5 KiB
create table enterprise_pub_qrcode
|
|
(
|
|
id varchar(50) not null comment '主键ID'
|
|
primary key,
|
|
enterprise_name varchar(100) null comment '企业名称',
|
|
enterprise_number varchar(100) null comment '企业纳税识别号',
|
|
area_name varchar(50) null comment '归属区域名称',
|
|
area_id varchar(50) null comment '归属区域id',
|
|
street_name varchar(50) null comment '归属街道名称',
|
|
street_id varchar(50) null comment '归属街道id',
|
|
matching_status varchar(50) null comment '匹配状态',
|
|
matching_message varchar(300) null comment '匹配消息',
|
|
download_status varchar(50) null comment '下载情况',
|
|
dept_name varchar(100) null comment '上传单位名称',
|
|
dept_id varchar(50) null comment '上传单位id',
|
|
user_name varchar(50) null comment '上传用户名称',
|
|
user_id bigint null comment '上传用户id',
|
|
create_time datetime null comment '创建时间',
|
|
create_by varchar(50) null comment '创建者',
|
|
qr_code_path varchar(300) null comment '二维码存储路径',
|
|
last_qr_code_time datetime null comment '上一次二维码生成时间',
|
|
import_row_num int null comment '导入序号',
|
|
import_file_name varchar(300) null comment '导入文件名',
|
|
import_file_id varchar(100) null comment '导入文件id',
|
|
remark varchar(500) null comment '备注',
|
|
matching_to_type varchar(50) null comment '匹配到的目标类型',
|
|
matching_to_id varchar(100) null comment '匹配到的目标id',
|
|
zone_dept_id varchar(50) null comment '父级存在zoneid的部门id',
|
|
zone_dept_name varchar(100) null comment '父级存在zoneid的部门名称',
|
|
update_time datetime default CURRENT_TIMESTAMP null on update CURRENT_TIMESTAMP
|
|
)
|
|
comment '送码入企信息表';
|
|
|