parent
72af9c83fb
commit
44c4c809bf
@ -0,0 +1,46 @@
|
||||
--2020-11-24微信渠道-商户进件字段添加
|
||||
alter table sys_wx_merchant_apply modify contact_phone varchar(20) not null;
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add merchant_country_code varchar(5) not null comment '商户国家编码';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add extra_merchant_type varchar(15) not null comment '商户类型:1.Enterprise 2.Individual';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add mcc_code varchar(4) not null comment 'Mcc编码';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add extra_reg_cer_number varchar(50) null comment '公司注册文件编号';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add extra_reg_cer_exp_date varchar(10) null comment '公司注册文件日期,格式:yyyy-MM-dd';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add stores_address varchar(128) null comment '店铺地址';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add business_type varchar(10) not null comment 'BOTH,OFFLINE,ONLINE,固定值为BOTH';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add director_name varchar(128) null comment '董事';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add director_id_number varchar(128) null comment '董事身份证号';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add principal_name varchar(128) null comment '负责人';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add principal_id_number varchar(128) null comment '负责人身份证号';
|
||||
|
||||
alter table sys_wx_merchant_apply
|
||||
add is_valid tinyint(1) default '1' null comment '微信子商户进件信息是否有效';
|
||||
|
||||
|
||||
|
||||
|
||||
-- 商户表 增加信息
|
||||
|
||||
ALTER TABLE `sys_clients`
|
||||
ADD COLUMN certificat_expire_date date DEFAULT NULL COMMENT '注册证书过期时间';
|
Loading…
Reference in new issue