From 44c4c809bf2519a1997791bde6b537da1b4d9518 Mon Sep 17 00:00:00 2001 From: AlanFenng Date: Tue, 15 Dec 2020 18:29:27 +0800 Subject: [PATCH] =?UTF-8?q?release=202.3.73=201.=E5=BE=AE=E4=BF=A1?= =?UTF-8?q?=E8=BF=9B=E4=BB=B6=E5=88=87=E6=8D=A2=E6=96=B0=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- src/db/2.3.73/update.sql | 46 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 src/db/2.3.73/update.sql diff --git a/pom.xml b/pom.xml index 0d6b695b2..591b9133d 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ 4.0.0 manage - 2.3.72 + 2.3.73 UTF-8 2.4.0 diff --git a/src/db/2.3.73/update.sql b/src/db/2.3.73/update.sql new file mode 100644 index 000000000..0d192703f --- /dev/null +++ b/src/db/2.3.73/update.sql @@ -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 '注册证书过期时间';