开业运营方案
This commit is contained in:
@@ -155,4 +155,9 @@ public class CommonConstants {
|
||||
public static final String DEAULT_SELECT_SITE_MANAGER = "020125244825417786";
|
||||
|
||||
|
||||
//开业运营方案审核0通过
|
||||
public static final Byte opening_Operation_Plan_PASS = Byte.valueOf((byte)0);
|
||||
//开业运营方案审核1拒绝
|
||||
public static final Byte opening_Operation_Plan_REJECT = Byte.valueOf((byte)1);
|
||||
public static final int MAX_LENGTH_ONE_HUNDRED = 100;
|
||||
}
|
||||
|
||||
@@ -164,6 +164,17 @@ public enum ErrorCodeEnum {
|
||||
|
||||
LINE_PAY_FALSE(109005, "付款信息查询失败",null),
|
||||
|
||||
INSERT_OPENING_OPERATION_PLAN_AUDIT_FALSE(103001,"插入运营方案审核信息失败",null),
|
||||
INSERT_OPENING_OPERATION_PLAN_FALSE(103002,"插入运营方案失败",null),
|
||||
SHOP_ID_IS_NULL(103003,"验参shopId失败,为空",null),
|
||||
ACTIVITY_THEME_LENGTH_FALSE(103004,"活动主题长度大于100",null),
|
||||
SURVEYRESULT_LENGTH_FALSE(103005,"调研结果长度大于100",null),
|
||||
ID_IS_NULL(103006,"验参Id失败,为空",null),
|
||||
UPDATE_AUDIT_PLAN_FALSE(103007,"修改AUDIT_PLAN失败",null),
|
||||
UPDATE_PLAN_FALSE(103008,"修改PLAN失败",null),
|
||||
UPDATE_SHOP_SUB_STAGE_STATUS_FALSE(103009,"修改开业运营方案阶段状态失败",null),
|
||||
SHOP_ID_NOT_EXIST(103010,"shopId不存在",null),
|
||||
|
||||
|
||||
;
|
||||
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
package com.cool.store.enums;
|
||||
|
||||
/**
|
||||
* @Auther: WangShuo
|
||||
* @Date: 2024/04/23/下午2:50
|
||||
* @Version 1.0
|
||||
* @注释:
|
||||
*/
|
||||
public enum OpeningOperationPlanResultTypeEnum {
|
||||
WAIT_AUDIT(0,"待审核"),
|
||||
PASS_AUDIT(1,"审核通过"),
|
||||
REJECT_AUDIT(2,"审核未通过");
|
||||
private Integer code;
|
||||
private String desc;
|
||||
|
||||
OpeningOperationPlanResultTypeEnum(Integer code, String desc) {
|
||||
this.code = code;
|
||||
this.desc = desc;
|
||||
}
|
||||
|
||||
public Integer getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
package com.cool.store.enums;
|
||||
|
||||
/**
|
||||
* @Auther: WangShuo
|
||||
* @Date: 2024/04/22/下午5:15
|
||||
* @Version 1.0
|
||||
* @注释:
|
||||
*/
|
||||
public enum OpeningOperationPlanSourceEnum {
|
||||
NEW(0,"新增"),
|
||||
SYNCHRONIZATION(1,"同步");
|
||||
|
||||
|
||||
private Integer code;
|
||||
private String desc;
|
||||
OpeningOperationPlanSourceEnum(Integer code, String desc) {
|
||||
this.code = code;
|
||||
this.desc = desc;
|
||||
}
|
||||
|
||||
public int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.cool.store.enums;
|
||||
|
||||
/**
|
||||
* @Auther: WangShuo
|
||||
* @Date: 2024/04/22/下午5:04
|
||||
* @Version 1.0
|
||||
* @注释:
|
||||
*/
|
||||
public enum ShopAuditInfoDeletedEnum {
|
||||
NO_DELETED(0,"不删除"),
|
||||
DELETED(1,"删除");
|
||||
|
||||
private Byte code;
|
||||
private String desc;
|
||||
ShopAuditInfoDeletedEnum(Integer code, String desc) {
|
||||
this.code = code.byteValue();
|
||||
this.desc = desc;
|
||||
}
|
||||
|
||||
public Byte getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
package com.cool.store.enums;
|
||||
|
||||
/**
|
||||
* @Auther: WangShuo
|
||||
* @Date: 2024/04/22/下午4:42
|
||||
* @Version 1.0
|
||||
* @注释:
|
||||
*/
|
||||
public enum ShopAuditInfoTypeEnum {
|
||||
|
||||
VISUAL_ACCEPTANCE(0,"视觉审批"),
|
||||
TRAINING_REGISTRATION_APPROVAL(1,"培训登记审批 "),
|
||||
OPENING_OPERATION_PLAN(2,"开业运营方案"),
|
||||
LICENSE_APPROVAL(3,"证照审批");
|
||||
|
||||
private Byte code;
|
||||
private String msg;
|
||||
|
||||
ShopAuditInfoTypeEnum(int code, String msg) {
|
||||
this.code = (byte) code;
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public Byte getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user