package com.gkhy.safePlatform.equipment.model.dto.req; import com.gkhy.safePlatform.equipment.utils.poihelper.ExcelCell; import java.io.Serializable; public class KeypointEquipmentInfoImportExcel implements Serializable { //类型/类别外键 @ExcelCell(index = 1) private Long equipmentTypeId; //名称 @ExcelCell(index = 2) private String name; //单位部门外键 @ExcelCell(index = 3) private Long departmentId; //所属部门名称 private String departmentName; //具体位置 @ExcelCell(index = 4) private String position; //负责人姓名 @ExcelCell(index = 5) private String leadingPersonName; //联系人/外键 @ExcelCell(index = 6) private Long connectPersonId; //录入人/外键 @ExcelCell(index = 7) private Long inputPersonId; //责任人/外键 @ExcelCell(index = 8) private Long responsibilityPersonId; //装置部位分类 1:关键装置 2:重点部位 @ExcelCell(index = 9) private Integer partType; //检查周期 @ExcelCell(index = 10) private String checkCycle; //应急预案/外键 @ExcelCell(index = 11) private Long emergencePlanId; //主要危险有害因素 @ExcelCell(index = 12) private String dangerousElement; //易导致风险 @ExcelCell(index = 13) private String toDangerous; //应急处置措施 @ExcelCell(index = 14) private String treatment; //现场图片 @ExcelCell(index = 15) private String scenePic; public String getDepartmentName() { return departmentName; } public void setDepartmentName(String departmentName) { this.departmentName = departmentName; } //类型/类别外键 public Long getEquipmentTypeId() { return equipmentTypeId; } public void setEquipmentTypeId(Long equipmentTypeId) { this.equipmentTypeId = equipmentTypeId; } //名称 public String getName() { return name; } public void setName(String name) { this.name = name; } //单位部门外键 public Long getDepartmentId() { return departmentId; } public void setDepartmentId(Long departmentId) { this.departmentId = departmentId; } //具体位置 public String getPosition() { return position; } public void setPosition(String position) { this.position = position; } //负责人姓名 public String getLeadingPersonName() { return leadingPersonName; } public void setLeadingPersonName(String leadingPersonName) { this.leadingPersonName = leadingPersonName; } //联系人/外键 public Long getConnectPersonId() { return connectPersonId; } public void setConnectPersonId(Long connectPersonId) { this.connectPersonId = connectPersonId; } //录入人/外键 public Long getInputPersonId() { return inputPersonId; } public void setInputPersonId(Long inputPersonId) { this.inputPersonId = inputPersonId; } //责任人/外键 public Long getResponsibilityPersonId() { return responsibilityPersonId; } public void setResponsibilityPersonId(Long responsibilityPersonId) { this.responsibilityPersonId = responsibilityPersonId; } //装置部位分类 1:关键装置 2:重点部位 public Integer getPartType() { return partType; } public void setPartType(Integer partType) { this.partType = partType; } //检查周期 public String getCheckCycle() { return checkCycle; } public void setCheckCycle(String checkCycle) { this.checkCycle = checkCycle; } //应急预案/外键 public Long getEmergencePlanId() { return emergencePlanId; } public void setEmergencePlanId(Long emergencePlanId) { this.emergencePlanId = emergencePlanId; } //主要危险有害因素 public String getDangerousElement() { return dangerousElement; } public void setDangerousElement(String dangerousElement) { this.dangerousElement = dangerousElement; } //易导致风险 public String getToDangerous() { return toDangerous; } public void setToDangerous(String toDangerous) { this.toDangerous = toDangerous; } //应急处置措施 public String getTreatment() { return treatment; } public void setTreatment(String treatment) { this.treatment = treatment; } //现场图片 public String getScenePic() { return scenePic; } public void setScenePic(String scenePic) { this.scenePic = scenePic; } }