This commit is contained in:
zt
2025-02-19 18:36:44 +08:00
parent 8c58c1798d
commit 2228f914db
21 changed files with 396 additions and 132 deletions

View File

@ -140,10 +140,10 @@ public class Constants
/**
* 包工头用户标志 前缀
*/
public static final String BGT = "bgt_";
public static final String BGT = "bgt";
/**
* 务工者用户标志 前缀
*/
public static final String WGZ = "wgz_";
public static final String WGZ = "wgz";
}

View File

@ -0,0 +1,33 @@
package com.ruoyi.common.enums;
/**
* 用户状态
*
* @author ruoyi
*/
public enum ProjectTaskStatus
{
APPLY("0", "申请中"),
PROGRESS("1", "进行中"),
COMPLETE("2", "已完成"),
;
private final String code;
private final String info;
ProjectTaskStatus(String code, String info)
{
this.code = code;
this.info = info;
}
public String getCode()
{
return code;
}
public String getInfo()
{
return info;
}
}