分包商
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
package com.ruoyi.common.enums;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 项目任务状态
|
||||
*
|
||||
@ -7,7 +10,7 @@ package com.ruoyi.common.enums;
|
||||
*/
|
||||
public enum ProjectTaskStatus
|
||||
{
|
||||
APPLY("0", "申请中"),
|
||||
APPLY("0", "未开始"),
|
||||
PROGRESS("1", "进行中"),
|
||||
COMPLETE("2", "已完成"),
|
||||
;
|
||||
@ -30,4 +33,9 @@ public enum ProjectTaskStatus
|
||||
{
|
||||
return info;
|
||||
}
|
||||
|
||||
//已发布的状态
|
||||
public static List<String> getRelease(){
|
||||
return Arrays.asList(APPLY.getCode(), PROGRESS.getCode());
|
||||
}
|
||||
}
|
||||
|
@ -13,6 +13,7 @@ public enum SubcontractingApplyStatus
|
||||
APPLY("0", "申请中"),
|
||||
PASS("1", "已同意"),
|
||||
REFUSE("2", "已拒绝"),
|
||||
CANCEL("3", "已取消"),
|
||||
;
|
||||
|
||||
private final String code;
|
||||
|
Reference in New Issue
Block a user