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
| 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 MonthPayEnum {
|
| Income_1(0,5, "未知"),
| Income_2(1,6, "5000元以下"),
| Income_3(2,7, "5000 - 10000元"),
| Income_4(3,8, "10001 - 15000元"),
| Income_5(4,9, "15001 - 20000元"),
| Income_6(5,10, "20001 - 25000元"),
| Income_7(6,11, "25001 - 30000元"),
| Income_8(7,12, "30000元以上");
|
| private Integer code;
| private Integer sys;
| private String value;
|
| }
|
|