Air
2024-11-04 2016903d06e308f44b9463fcd4029850ababf152
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.nova.sankuai.domain.enums.huizhixin;
 
import io.swagger.annotations.ApiModel;
 
@ApiModel(value = "客户贷前信息-行业")
public enum LoanIndustryEnum {
 
    Industry_1("I026", "政府机关/公务员"),
    Industry_2("I027", "事业单位"),
    Industry_3("I028", "国有企业"),
    Industry_4("I029", "互联网/IT"),
    Industry_5("I030", "房地产"),
    Industry_6("I031", "金融"),
    Industry_7("I032", "机械制造"),
    Industry_8("I033", "医疗美容"),
    Industry_9("I034", "汽车交通"),
    Industry_10("I035", "贸易物流"),
    Industry_11("I036", "能源环保"),
    Industry_12("I037", "广告传媒"),
    Industry_13("I038", "法律"),
    Industry_14("I039", "教育"),
    Industry_15("I040", "服务"),
    Industry_16("I041", "个体户"),
    Industry_17("I042", "自由职业"),
    Industry_18("I100", "其他"),
    ;
 
 
    private String code;
    private String value;
 
    LoanIndustryEnum(String code, String value) {
        this.code = code;
        this.value = value;
    }
 
    public static String value(String code) {
        if (code != null) {
            for (LoanIndustryEnum m : LoanIndustryEnum.values()) {
                if (m.getCode().equals(code)) {
                    return m.getValue();
                }
            }
        }
        return null;
    }
 
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getValue() {
        return value;
    }
 
    public void setValue(String value) {
        this.value = value;
    }
 
}