Merge branch 'cc_20250829_openStore' into 'master'

Cc 20250829 open store

See merge request hangzhou/java/custom_zxjp!157
This commit is contained in:
苏竹红
2025-09-04 10:15:17 +00:00
11 changed files with 67 additions and 21 deletions

View File

@@ -298,6 +298,10 @@ public enum ErrorCodeEnum {
MESSAGE_TEMPLATE_NOT_SUPPORT_DELETED(1610002,"只有未发布的消息能删除,请确认!",null),
STORE_MESSAGE_REVOKE(1610003,"当前门店消息已撤销,请务重复操作",null),
STORE_MESSAGE_HANDLED(1610004,"当前门店消息已处理,无法撤销!",null),
NOT_FLAGSHIP_STORE(16100005,"非直营店,无法跳过缴费阶段!",null),
NOT_FLAGSHIP_STORE_NOT_EXIST(16100006,"当前阶段加盟类型不能变更!",null),
;

View File

@@ -12,7 +12,8 @@ public enum JoinModeEnum {
OWN_STORE(3,"加盟公司自有店"),
STRONG_FRANCHISE(4,"强加盟"),
DIRECT_SALES_TO_JOINING(5,"老店转加盟"),
AFFILIATES(6,"联营店")
AFFILIATES(6,"联营店"),
FLAGSHIP_STORE(7,"直营店"),
;
private int code;
private String desc;