This commit is contained in:
zt
2025-03-06 14:30:45 +08:00
parent d3add5b113
commit 4570788d5e
24 changed files with 359 additions and 154 deletions

View File

@ -1,7 +1,7 @@
package com.ruoyi.common.enums;
/**
* 用户状态
* 招工申请状态
*
* @author ruoyi
*/

View File

@ -0,0 +1,33 @@
package com.ruoyi.common.enums;
/**
* 招工状态
*
* @author ruoyi
*/
public enum RecruitStatus
{
PROGRESS("1", "进行中"),
FULL("2", "已招满"),
OVERDUE("3", "已过期"),
;
private final String code;
private final String info;
RecruitStatus(String code, String info)
{
this.code = code;
this.info = info;
}
public String getCode()
{
return code;
}
public String getInfo()
{
return info;
}
}