分包商

This commit is contained in:
zt
2025-03-27 16:20:41 +08:00
parent 823d935d2d
commit e35e17df3e
35 changed files with 615 additions and 107 deletions

View File

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

View File

@ -13,6 +13,7 @@ public enum SubcontractingApplyStatus
APPLY("0", "申请中"),
PASS("1", "已同意"),
REFUSE("2", "已拒绝"),
CANCEL("3", "已取消"),
;
private final String code;