This commit is contained in:
shuo.wang
2024-10-13 10:38:58 +08:00
parent 3c57954256
commit 494b74bf0f
5 changed files with 49 additions and 9 deletions

View File

@@ -0,0 +1,25 @@
package com.cool.store.enums;
/**
* @Author: WangShuo
* @Date: 2024/10/13/上午10:26
* @Version 1.0
* @注释:
*/
public enum AuditExecuteEnum {
FRANCHISEES(0, "加盟商提交"),
OPERATION(1, "运营初审"),
HEADQUARTERS(2, "总部受理");
private int code;
private String desc;
AuditExecuteEnum(int code, String desc) {
this.code = code;
this.desc = desc;
}
public int getCode() {
return code;
}
public String getDesc() {
return desc;
}
}