企业公告和公众号审核
#数据库 ucs
alter table `tb_biz_company_base_info` add company_notice_tmp varchar(5000) not null default '' after company_notice;
alter table `tb_biz_company_base_info` add company_notice_status tinyint(1) not null default 1 comment '1代表待审核,2代表审核通过,3代表审核不通过' after company_notice_tmp;
alter table `tb_biz_company_base_info` add company_notice_reason varchar(255) not null default '' comment '企业公告不通过原因' after company_notice_status;
alter table `tb_biz_company_base_info` add public_img_tmp varchar(512) not null default '' after public_img;
alter table `tb_biz_company_base_info` add public_img_status tinyint(1) not null default 1 comment '1代表待审核,2代表审核通过,3代表审核不通过' after public_img_tmp;
alter table `tb_biz_company_base_info` add public_img_reason varchar(255) not null default '' comment '企业公众号不通过原因' after public_img_status;