开业筹备

This commit is contained in:
shuo.wang
2024-04-25 10:44:17 +08:00
parent a7441cf92b
commit 65e3a8cafa
4 changed files with 35 additions and 47 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;
}
}