yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.resource.enums;
 
import com.qianwen.smartman.modules.cps.constant.ProductExcelConstant;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/resource/enums/TemplateEnum.class */
public enum TemplateEnum {
    POST("post_excel_template", "岗位导入模板"),
    EMPLOYEE("employee_excel_template", "员工导入模板"),
    ORGANIZATION("organization_excel_template", "部门导入模板"),
    WORKSTATION("workstation_excel_template", "工位导入模板"),
    MAINTAIN_ITEM("maintain_item_excel_template", "保养项导入模板"),
    DEVICE_TYPE("device_type_excel_template", "机器类型导入模板"),
    CHECK_PROJECT("check_project_excel_template", "点检项目导入模板"),
    MALFUNCTION_TYPE("malfunction_type_excel_template", "故障类型导入模板"),
    PROCESS("process_excel_template", "工序导入模板"),
    MACHINE("machine_excel_template", "机器导入模版"),
    MATERIAL("material_excel_template", "物料信息导入模板"),
    PRODUCT("product_excel_template", ProductExcelConstant.IMPORT_TEMPLATE),
    WAREHOUSE_STATION("warehouse_station_excel_template", "库位导入模版"),
    I18N_TYPE("i18n_excel_template", "国际化导入模板"),
    TRAY("tray_excel_template", "托盘导入模板"),
    TRAY_FIXTURE("tray_fixture_excel_template", "托盘-夹具导入模板"),
    FIXTURE("fixture_excel_template", "夹具导入模板"),
    TRAY_STORAGE("tray_storage_excel_template", "库区-托盘导入模板"),
    MATERIAL_STORAGE("material_storage_excel_template", "物料存放导入模板"),
    PLAN("coproduction_plan", "计划导入模板");
    
    final String code;
    final String fileName;
 
    TemplateEnum(final String code, final String fileName) {
        this.code = code;
        this.fileName = fileName;
    }
 
    public String getCode() {
        return this.code;
    }
 
    public String getFileName() {
        return this.fileName;
    }
}