开业运营方案
This commit is contained in:
@@ -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)
|
||||
|
||||
;
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user