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
| package com.nova.sankuai.domain.api.zhongan;
|
| import lombok.AllArgsConstructor;
| import lombok.Getter;
|
| /**
| * <p>
| * description
| * </p>
| *
| * @author denglb 2021/11/16
| */
| @AllArgsConstructor
| @Getter
| public enum ZhonganEducationEnum {
|
| Education_1(1, "高中/中专", "3"),
| Education_2(2, "大专", "2"),
| Education_3(3, "本科", "1"),
| Education_4(4, "研究生", "6"),
| Education_5(5, "其他", "5");
|
| private Integer code;
| private String value;
| private String sys;
| }
|
|