Browse Source

Merge branch 'bocom' of http://192.168.0.200:3000/liuj/factoring-trade-c into bocom

Wangyafan 4 weeks ago
parent
commit
f46f60349f

+ 4 - 1
src/main/java/com/inkasso/factoring/bocom/register/enums/BocomCustomerStatuEnums.java

@@ -4,7 +4,10 @@ public enum BocomCustomerStatuEnums {
 
     SUCCESS("bocomCustomerStatus_success", "生效"),
 
-    FAIL("bocomCustomerStatus_fail", "待生效"),
+    OPENING("bocomCustomerStatus_fail", "待生效"),
+
+
+    FAIL("bocomCustomerStatus_failed", "开户失败"),
 
     TERMINATION("bocomCustomerStatus_termination", "终止");
 

+ 3 - 1
src/main/resources/data/bocom/liutao.sql

@@ -260,7 +260,9 @@ VALUES ( '生效', (select t.id from t_dictionary t where t.code = 'bocomCustome
 INSERT INTO `t_dictionary` ( `name`, `parentId`, `code`, `value`, `gradation`, `gmt_create`, `gmt_modified`)
 VALUES ( '待生效', (select t.id from t_dictionary t where t.code = 'bocomCustomerStatus'), 'bocomCustomerStatus_fail', NULL, 1,now(),now());
 INSERT INTO `t_dictionary` ( `name`, `parentId`, `code`, `value`, `gradation`, `gmt_create`, `gmt_modified`)
-VALUES ( '终止', (select t.id from t_dictionary t where t.code = 'bocomCustomerStatus'), 'bocomCustomerStatus_termination', NULL, 2,now(),now());
+VALUES ( '开户失败', (select t.id from t_dictionary t where t.code = 'bocomCustomerStatus'), 'bocomCustomerStatus_failed', NULL, 2,now(),now());
+INSERT INTO `t_dictionary` ( `name`, `parentId`, `code`, `value`, `gradation`, `gmt_create`, `gmt_modified`)
+VALUES ( '终止', (select t.id from t_dictionary t where t.code = 'bocomCustomerStatus'), 'bocomCustomerStatus_termination', NULL, 3,now(),now());
 
 INSERT INTO `t_dictionary` ( `name`, `parentId`, `code`, `value`, `gradation`, `gmt_create`, `gmt_modified`)
 VALUES ( '企业证件种类', NULL, 'enterpriseCertificateType', NULL, null, now(),now());