parent
f6aed30243
commit
b96faf400b
@ -0,0 +1,24 @@
|
||||
package com.ruoyi.common.enums;
|
||||
|
||||
public enum ExamineState {
|
||||
ENABLE("0", "通过"), DISABLE("1", "未通过"), DEFAULT("2", "未审核");
|
||||
|
||||
private final String code;
|
||||
private final String info;
|
||||
|
||||
ExamineState(String code, String info)
|
||||
{
|
||||
this.code = code;
|
||||
this.info = info;
|
||||
}
|
||||
|
||||
public String getCode()
|
||||
{
|
||||
return code;
|
||||
}
|
||||
|
||||
public String getInfo()
|
||||
{
|
||||
return info;
|
||||
}
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
package com.ruoyi.common.exception.user;
|
||||
|
||||
public class UserDisableException extends UserException{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
public UserDisableException()
|
||||
{
|
||||
super("user.examine.disabled", null);
|
||||
}
|
||||
}
|
Loading…
Reference in new issue