This commit is contained in:
张良(004796)
2024-03-05 18:57:21 +08:00
parent 779de6cbc1
commit 7e1f31ed2f
65 changed files with 1976 additions and 751 deletions

View File

@@ -0,0 +1,23 @@
package com.ruoyi.xq.enums.user;
import lombok.Getter;
// single-单身认证 education-学历认证 job-工作认证 car-车辆认证 house-房子认证 marriage-婚况认证
@Getter
public enum UserAuthTypeEnum {
SINGLE("single","单身认证"),
EDUCATION("education","学历认证"),
JOB("job","工作认证"),
CAR("car","车辆认证"),
HOUSE("house","房子认证"),
MARRIAGE("marriage","婚况认证"),
;
private final String code;
private final String text;
UserAuthTypeEnum(String code, String text) {
this.code = code;
this.text = text;
}
}

View File

@@ -0,0 +1,18 @@
package com.ruoyi.xq.enums.user;
import lombok.Getter;
@Getter
public enum UserInfoAuditTypeEnum {
AVATAR(1,"头像"),
REMARK(2,"备注"),
;
private final Integer code;
private final String text;
UserInfoAuditTypeEnum(Integer code, String text) {
this.code = code;
this.text = text;
}
}