日计划管理-客户需求-优化

This commit is contained in:
2026-01-26 17:24:42 +08:00
parent 5035489ad4
commit 31904e4c3c

View File

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