开业筹备
This commit is contained in:
@@ -1,32 +0,0 @@
|
||||
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 Integer code;
|
||||
private String msg;
|
||||
|
||||
ShopAuditInfoTypeEnum(int code, String msg) {
|
||||
this.code = code;
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
public Integer getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public String getMsg() {
|
||||
return msg;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user