公共处理

This commit is contained in:
zhangchenbiao
2024-03-20 16:04:13 +08:00
parent 6e49510340
commit b44a20b2b9
10 changed files with 304 additions and 20 deletions

View File

@@ -0,0 +1,31 @@
package com.cool.store.enums;
/**
* @author zhangchenbiao
* @FileName: AuditResultTypeEnum
* @Description:
* @date 2024-03-20 14:55
*/
public enum AuditResultTypeEnum {
PASS(0, "通过"),
REJECT(1, "拒绝"),
CLOSE(2, "结束跟进");
private Integer code;
private String name;
private AuditResultTypeEnum(Integer code, String name) {
this.code = code;
this.name = name;
}
public Integer getCode() {
return code;
}
public String getName() {
return name;
}
}