日计划管理-客户需求-优化
This commit is contained in:
@ -0,0 +1,32 @@
|
|||||||
|
package com.pictc.enums;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author: zbz
|
||||||
|
* @Date: 2023/3/1 15:12
|
||||||
|
*/
|
||||||
|
public enum ApproveCodeEnum {
|
||||||
|
|
||||||
|
WTJ("WTJ", "未提交"),
|
||||||
|
|
||||||
|
SPZ("SPZ", "审批中"),
|
||||||
|
|
||||||
|
YSP("YSP", "已审批"),
|
||||||
|
|
||||||
|
YBH("YBH", "已驳回");
|
||||||
|
|
||||||
|
final String code;
|
||||||
|
final String value;
|
||||||
|
|
||||||
|
public String getCode() {
|
||||||
|
return this.code;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getValue() {
|
||||||
|
return this.value;
|
||||||
|
}
|
||||||
|
|
||||||
|
ApproveCodeEnum(final String code, final String message) {
|
||||||
|
this.code = code;
|
||||||
|
this.value = message;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user