You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
508 B
27 lines
508 B
package enums;
|
|
|
|
import lombok.Getter;
|
|
|
|
/**
|
|
* @Author: yawei.huang
|
|
* @Package: enums
|
|
* @Project: luoo_parent
|
|
* @Date: 2024/4/28 8:36
|
|
* @Filename: UserProcessStatusEnum
|
|
* @Describe:
|
|
*/
|
|
@Getter
|
|
public enum UserProcessStatusEnum {
|
|
UNAPPROVED(0, "未审核"),
|
|
SUCCESS(1, "审核成功"),
|
|
FAIL(2, "审核失败");
|
|
|
|
private final Integer code;
|
|
private final String desc;
|
|
|
|
UserProcessStatusEnum(Integer code, String desc) {
|
|
this.code = code;
|
|
this.desc = desc;
|
|
}
|
|
}
|