yangys
2024-10-30 25db770e621f1259b8d5b7fd514207f7481c2d0f
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
package com.qianwen.smartman.common.enums;
 
import com.qianwen.smartman.common.constant.DictConstant;
import com.qianwen.smartman.common.constant.NotifyConstant;
 
public enum DictEnum {
    SEX(DictConstant.SEX_CODE),
    NOTICE(DictConstant.NOTICE_CODE),
    MENU_CATEGORY(DictConstant.MENU_CATEGORY_CODE),
    BUTTON_FUNC(DictConstant.BUTTON_FUNC_CODE),
    YES_NO(DictConstant.YES_NO_CODE),
    FLOW("flow"),
    ORG_CATEGORY("org_category"),
    DATA_SCOPE_TYPE("data_scope_type"),
    DATA_SCOPE_CATEGORY("data_scope_category"),
    API_SCOPE_TYPE("api_scope_type"),
    SCOPE_CATEGORY("scope_category"),
    OSS("oss"),
    SMS(NotifyConstant.SMS_TYPE_VALUE),
    POST_CATEGORY("post_category"),
    REGION("region"),
    USER_TYPE("user_type"),
    EMPLOYEE_STATUS("employee_status"),
    WORKSTATION_TYPE("workstation_type"),
    MACHINE_LIFE_STATUS("machine_life_state"),
    MACHINE_MANAGEMENT_CLASS("machine_management_class"),
    MACHINE_USE_STATUS("machine_use_state"),
    MATERIAL_PROPERTY("material_property"),
    DMP_DATA_TYPE("dmp_data_type"),
    TRAY_CATEGORY("tray_category");
    
    final String name;
 
    DictEnum(final String name) {
        this.name = name;
    }
 
    public String getName() {
        return this.name;
    }
}