This commit is contained in:
zt
2025-04-16 17:31:18 +08:00
parent 57e0061da9
commit 48d38d1962
52 changed files with 927 additions and 88 deletions

View File

@ -17,6 +17,7 @@ public enum RecruitApplyStatus
WGZ_REFUSE("4", "务工者拒绝"),
WORKING("5", "进场"),
OUT_WORK("6", "离场"),
CANCEL("7", "取消"),
;
private final String code;
@ -57,4 +58,9 @@ public enum RecruitApplyStatus
public static List<String> getFile(){
return Arrays.asList(WORKING.getCode(), WGZ_PASS.getCode());
}
//其他
public static List<String> other(){
return Arrays.asList(BGT_REFUSE.getCode(), WGZ_REFUSE.getCode(),CANCEL.getCode());
}
}