添加字段

This commit is contained in:
zt
2025-02-18 17:25:21 +08:00
parent d782d2d9f0
commit 10e5eaf242
17 changed files with 202 additions and 71 deletions

View File

@ -0,0 +1,30 @@
package com.ruoyi.common.enums;
/**
* 用户状态
*
* @author ruoyi
*/
public enum RecruitApplyStatus
{
TO_PASS("0", "未选择"), PASS("1", "已选择"), ;
private final String code;
private final String info;
RecruitApplyStatus(String code, String info)
{
this.code = code;
this.info = info;
}
public String getCode()
{
return code;
}
public String getInfo()
{
return info;
}
}