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
| package com.panzhihua.common.enums;
|
| import lombok.Getter;
|
| /**
| * @title: IdentityAuthTypeEnum
| * @projectName: 成都呐喊信息技术有限公司-智慧社区项目
| * @description: 身份认证类型枚举类
| * @author: hans
| * @date: 2021/09/14 10:40
| */
| @Getter
| public enum IdentityAuthTypeEnum {
| /**
| * 高龄认证
| */
| ELDER_AUTH(1),
| /**
| * 养老认证
| */
| PENSION_AUTH(2);
|
| private int type;
|
| IdentityAuthTypeEnum(int type) {
| this.type = type;
| }
| }
|
|