1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| package com.panzhihua.common.enums;
|
| import lombok.Getter;
|
| /**
| * @title: IdentityApprovalStatusEnum
| * @projectName: 成都呐喊信息技术有限公司-智慧社区项目
| * @description: 身份认证审核状态枚举类
| * @author: hans
| * @date: 2021/09/14 11:26
| */
| @Getter
| public enum IdentityApprovalStatusEnum {
| /**
| * 待审核
| */
| PENDING_REVIEW(1),
| /**
| * 驳回
| */
| REFUSE(2),
| /**
| * 通过
| */
| PASS_THROUGH(3);
|
| private int status;
|
| IdentityApprovalStatusEnum(int status) {
| this.status = status;
| }
| }
|
|