This commit is contained in:
zt
2025-04-03 09:56:56 +08:00
parent bfc839fa8d
commit 6a6adcf8b2
26 changed files with 521 additions and 38 deletions

View File

@ -38,7 +38,11 @@ public enum SubcontractingApplyStatus
//项目申请中的状态
public static List<String> getApplyStatus(){
return Arrays.asList(APPLY.getCode(),REFUSE.getCode());
return Arrays.asList(APPLY.getCode());
}
public static List<String> getApplyAllStatus(){
return Arrays.asList(APPLY.getCode(),PASS.getCode());
}
}