This commit is contained in:
2023-03-04 16:29:55 +08:00
commit 397ba75479
1007 changed files with 109050 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
package com.jsowell.common.enums;
/**
* 用户状态
*
* @author jsowell
*/
public enum UserStatus {
OK("0" , "正常"),
DISABLE("1" , "停用"),
DELETED("2" , "删除");
private final String code;
private final String info;
UserStatus(String code, String info) {
this.code = code;
this.info = info;
}
public String getCode() {
return code;
}
public String getInfo() {
return info;
}
}