This commit is contained in:
zt
2025-03-31 09:19:17 +08:00
parent 382af7790e
commit ed14f2399d
7 changed files with 123 additions and 26 deletions

View File

@ -0,0 +1,35 @@
package com.ruoyi.common.enums;
/**
* 项目任务状态
*
* @author ruoyi
*/
public enum TaskApplyStatus
{
APPLY("0", "申情中"),
PASS("1", "已同意"),
REFUSE("2", "已拒绝"),
CANCEL("3", "已取消"),
;
private final String code;
private final String info;
TaskApplyStatus(String code, String info)
{
this.code = code;
this.info = info;
}
public String getCode()
{
return code;
}
public String getInfo()
{
return info;
}
}