... | ... | @@ -274,33 +274,33 @@ create table tb_company_base( |
|
|
change_update_time datetime default null comment '#task: 变更记录更新时间',
|
|
|
branch_update_time datetime default null comment '#task: 分支机构更新时间',
|
|
|
annual_report_update_time datetime default null comment '#task: 分支机构更新时间',
|
|
|
has_allow smallint(6) default '1' comment '#task: 是否有行政许可 0:有 1:没有',
|
|
|
has_allow smallint(6) default '0' comment '#task: 是否有行政许可 0:没有 1:有',
|
|
|
allow_update_time datetime default null comment '#task: 行政许可更新时间',
|
|
|
has_punish smallint(6) default '1' comment '#task: 是否有行政处罚 0:有 1:没有',
|
|
|
has_punish smallint(6) default '0' comment '#task: 是否有行政处罚 0:没有 1:有',
|
|
|
punish_update_time datetime default null comment '#task: 行政处罚更新时间',
|
|
|
has_abnormal smallint(6) default '1' comment '#task: 是否有经营异常 0:有 1:没有',
|
|
|
has_abnormal smallint(6) default '0' comment '#task: 是否有经营异常 0:没有 1:有',
|
|
|
abnormal_update_time datetime default null comment '#task: 经营异常更新时间',
|
|
|
has_illegal smallint(6) default '1' comment '#task: 是否有严重违法 0:有 1:没有',
|
|
|
has_illegal smallint(6) default '0' comment '#task: 是否有严重违法 0:没有 1:有',
|
|
|
illegal_update_time datetime default null comment '#task: 严重违法更新时间',
|
|
|
has_pledge smallint(6) default '1' comment '#task: 是否有股权出质 0:有 1:没有',
|
|
|
has_pledge smallint(6) default '0' comment '#task: 是否有股权出质 0:没有 1:有',
|
|
|
pledge_update_time datetime default null comment '#task: 股权出质更新时间',
|
|
|
has_justice smallint(6) default '1' comment '#task: 是否有司法协助 0:有 1:没有',
|
|
|
has_justice smallint(6) default '0' comment '#task: 是否有司法协助 0:没有 1:有',
|
|
|
justice_update_time datetime default null comment '#task: 司法协助更新时间',
|
|
|
has_chattel smallint(6) default '1' comment '#task: 是否有动产抵押 0:有 1:没有',
|
|
|
has_chattel smallint(6) default '0' comment '#task: 是否有动产抵押 0:没有 1:有',
|
|
|
chattel_update_time datetime default null comment '#task: 动产抵押更新时间',
|
|
|
has_intellectual smallint(6) default '1' comment '#task: 是否有知识产权出质 0:有 1:没有',
|
|
|
has_intellectual smallint(6) default '0' comment '#task: 是否有知识产权出质 0:没有 1:有',
|
|
|
intellectual_update_time datetime default null comment '#task: 知识产权出质更新时间',
|
|
|
has_clear smallint(6) default '1' comment '#task: 是否有清算信息 0:有 1:没有',
|
|
|
has_clear smallint(6) default '0' comment '#task: 是否有清算信息 0:没有 1:有',
|
|
|
clear_update_time datetime default null comment '#task: 清算信息更新时间',
|
|
|
has_check smallint(6) default '1' comment '#task: 是否有抽查检查信息 0:有 1:没有',
|
|
|
has_check smallint(6) default '0' comment '#task: 是否有抽查检查信息 0:没有 1:有',
|
|
|
check_update_time datetime default null comment '#task: 抽查检查更新时间',
|
|
|
has_random_check smallint(6) default '1' comment '#task: 是否有双随机抽查检查 0:有 1:没有',
|
|
|
has_random_check smallint(6) default '0' comment '#task: 是否有双随机抽查检查 0:没有 1:有',
|
|
|
random_check_update_time datetime default null comment '#task: 双随机抽查检查更新时间',
|
|
|
has_qy_partner smallint(6) default '1' comment '#task: 是否有企业自主公示股东 0:有 1:没有',
|
|
|
has_qy_partner smallint(6) default '0' comment '#task: 是否有企业自主公示股东 0:没有 1:有',
|
|
|
qy_partner_update_time datetime default null comment '#task: 企业自主公示股东更新时间',
|
|
|
has_simple_cancel smallint(6) default '1' comment '#task: 是否有简易注销 0:有 1:没有',
|
|
|
has_simple_cancel smallint(6) default '0' comment '#task: 是否有简易注销 0:没有 1:有',
|
|
|
simple_cancel_update_time datetime default null comment '#task: 简易注销更新时间',
|
|
|
has_cancel_notice smallint(6) default '1' comment '#task: 是否有注销备案公告 0:有 1:没有',
|
|
|
has_cancel_notice smallint(6) default '0' comment '#task: 是否有注销备案公告 0:没有 1:有',
|
|
|
cancel_notice_update_time datetime default null comment '#task: 注销备案公告更新时间',
|
|
|
create_time datetime default current_timestamp comment '入库时间',
|
|
|
update_time datetime default current_timestamp on update current_timestamp comment '更新时间',
|
... | ... | |