This commit is contained in:
zt
2025-03-07 14:45:49 +08:00
parent b0e8333724
commit 3ec18b78ae
50 changed files with 511 additions and 188 deletions

View File

@ -1,5 +1,8 @@
package com.ruoyi.common.enums;
import java.util.Arrays;
import java.util.List;
/**
* 招工申请状态
*
@ -34,4 +37,8 @@ public enum RecruitApplyStatus
{
return info;
}
public static List<String> getTaskStatus(){
return Arrays.asList(WGZ_PASS.getCode(),WORKING.getCode(), OUT_WORK.getCode());
}
}