开业运营方案

This commit is contained in:
shuo.wang
2024-04-24 22:22:33 +08:00
parent e5a07a3512
commit dd4a6a5bcf
33 changed files with 307 additions and 55 deletions

View File

@@ -176,7 +176,7 @@ public enum ErrorCodeEnum {
UPDATE_PLAN_FALSE(103008,"修改PLAN失败",null),
UPDATE_SHOP_SUB_STAGE_STATUS_FALSE(103009,"修改开业运营方案阶段状态失败",null),
SHOP_ID_NOT_EXIST(103010,"shopId不存在",null),
FIRST_ORDER_PARAM_NULL(103020,"首批订货金参数为空",null)
;

View File

@@ -13,15 +13,15 @@ public enum ShopAuditInfoTypeEnum {
OPENING_OPERATION_PLAN(2,"开业运营方案"),
LICENSE_APPROVAL(3,"证照审批");
private Byte code;
private Integer code;
private String msg;
ShopAuditInfoTypeEnum(int code, String msg) {
this.code = (byte) code;
this.code = code;
this.msg = msg;
}
public Byte getCode() {
public Integer getCode() {
return code;
}