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; } }