/** * Copyright (c) 2020 ucsmy.com, All rights reserved. */ package com.ruoyi.project.enumerate; import lombok.Getter; /** * @Description: 附件各种类型对应的表格 * @Author: Administrator * @Created Date: 2020年05月10日 * @LastModifyDate: * @LastModifyBy: * @Version: */ @Getter public enum DcAttachmentTypeEnum { /** * 第三方检测 */ Third_Party_Testing(1, "第三方检测附件"), Standardization(2, "标准化达标"), Security_Documents(3, "安全体系文件"), Industry_Qualification(4, "行业资质"), Incident_Report(5, "事件上报"), Factory_Evacuation(6, "厂区疏散"), Facilities_Distribution(7, "消防设施分布"), Emergency_Plan(8, "应急预案"), Emergency_Drills(9, "应急演练"), Accident_Information(10, "事故信息"), Article(11, "公司信息"), Article_Regulation(11, "法律法规"), ; /** * 评价方法 */ private Integer type; /** * 风险值 */ private String msg; DcAttachmentTypeEnum(Integer type, String msg) { this.type = type; this.msg = msg; } public Integer getType() { return type; } public String getMsg() { return msg; } }