重复枚举删除

This commit is contained in:
苏竹红
2024-04-25 09:58:46 +08:00
parent a7441cf92b
commit 0615d948cb
2 changed files with 2 additions and 34 deletions

View File

@@ -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;
}
}