package com.gkhy.safePlatform.equipment.model.dto.req;
|
|
import com.gkhy.safePlatform.equipment.utils.poihelper.ExcelCell;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
public class EquipmentInfoImportExcel implements Serializable {
|
//类型/类别外键
|
@ExcelCell(index = 1)
|
private Long equipmentTypeId;
|
//具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施
|
@ExcelCell(index = 2)
|
private Integer infoType;
|
//名称
|
@ExcelCell(index = 3)
|
private String qName;
|
//位号
|
@ExcelCell(index = 4)
|
private String positionNum;
|
//用途
|
@ExcelCell(index = 5)
|
private String qUsage;
|
//型号
|
@ExcelCell(index = 6)
|
private String model;
|
//单位部门外键
|
@ExcelCell(index = 7)
|
private Long departmentId;
|
//设置部位
|
@ExcelCell(index = 8)
|
private String setPart;
|
//生产日期
|
@ExcelCell(index = 9)
|
private Timestamp produceTime;
|
//使用期限(天)
|
@ExcelCell(index = 10)
|
private String useEndDay;
|
//生命周期 1:已使用 2:库存中 3:报废
|
@ExcelCell(index = 11)
|
private Integer lifeCycle;
|
//投用日期
|
@ExcelCell(index = 12)
|
private Timestamp useDate;
|
//维修状态 1:维修中 2:已修好
|
@ExcelCell(index = 13)
|
private Integer repairStatus;
|
//停用状态 1:停用 2.在用 3.维修 4.报废
|
@ExcelCell(index = 14)
|
private Integer stopStatus;
|
//上次检查日期
|
@ExcelCell(index = 15)
|
private Timestamp previousCheckDate;
|
//上次检测日期
|
@ExcelCell(index = 16)
|
private Timestamp previousTestDate;
|
//上次保养日期
|
@ExcelCell(index = 17)
|
private Timestamp previousTakecareDate;
|
//下次检查日期
|
@ExcelCell(index = 18)
|
private Timestamp nextCheckDate;
|
//下次检测日期
|
@ExcelCell(index = 19)
|
private Timestamp nextTestDate;
|
//下次保养日期
|
@ExcelCell(index = 20)
|
private Timestamp nextTakecareDate;
|
//负责人ID外键
|
@ExcelCell(index = 21)
|
private Long leadingPersonId;
|
//负责人部门外键
|
@ExcelCell(index = 22)
|
private Long leadingPersonDepartmentId;
|
//供应商
|
@ExcelCell(index = 23)
|
private String supplyName;
|
//使用说明
|
@ExcelCell(index = 24)
|
private String useMemo;
|
//是否检查 1:是 2:否
|
@ExcelCell(index = 25)
|
private Integer isNeedCheck;
|
//检查周期
|
@ExcelCell(index = 26)
|
private String checkCycle;
|
//检查提前提醒
|
@ExcelCell(index = 27)
|
private String checkWarn;
|
//是否检测 1:是 2:否
|
@ExcelCell(index = 28)
|
private Integer isNeedTest;
|
//检测周期
|
@ExcelCell(index = 29)
|
private String testCycle;
|
//检测提前提醒
|
@ExcelCell(index = 30)
|
private String testWarn;
|
//是否保养 1:是 2:否
|
@ExcelCell(index = 31)
|
private Integer isNeedTakecare;
|
//检查内容
|
@ExcelCell(index = 32)
|
private String checkContent;
|
//负责部门/外键
|
@ExcelCell(index = 33)
|
private Long leadingDepartmentId;
|
//检查指标
|
@ExcelCell(index = 34)
|
private String checkPoint;
|
//预警值
|
@ExcelCell(index = 35)
|
private String alertNum;
|
//联锁值
|
@ExcelCell(index = 36)
|
private String lockNum;
|
//停用理由
|
@ExcelCell(index = 37)
|
private String stopReason;
|
//停用后措施
|
@ExcelCell(index = 38)
|
private String afterStopStep;
|
//实际停用日期
|
@ExcelCell(index = 39)
|
private Timestamp actualStopDate;
|
//停用提交人/外键
|
@ExcelCell(index = 40)
|
private Long stopSubmitPersonId;
|
//停用提交日期
|
@ExcelCell(index = 41)
|
private Timestamp stopSubmitDate;
|
//恢复理由
|
@ExcelCell(index = 42)
|
private String recoveryReason;
|
//恢复填报日期
|
@ExcelCell(index = 43)
|
private Timestamp recoverySubmitDate;
|
//实际恢复日期
|
@ExcelCell(index = 44)
|
private Timestamp actualRecoveryDate;
|
//报废理由
|
@ExcelCell(index = 45)
|
private String destoryReason;
|
//报废填报日期
|
@ExcelCell(index = 46)
|
private Timestamp destorySubmitDate;
|
//实际报废日期
|
@ExcelCell(index = 47)
|
private Timestamp actualDestoryDate;
|
|
|
//类型/类别外键
|
public Long getEquipmentTypeId() {
|
return equipmentTypeId;
|
}
|
|
public void setEquipmentTypeId(Long equipmentTypeId) {
|
this.equipmentTypeId = equipmentTypeId;
|
}
|
//具体类型(页面左侧的导航栏使用) 0:仪器仪表信息 1:生产设备设施 2:安全设备设施
|
public Integer getInfoType() {
|
return infoType;
|
}
|
|
public void setInfoType(Integer infoType) {
|
this.infoType = infoType;
|
}
|
//位号
|
public String getPositionNum() {
|
return positionNum;
|
}
|
|
public void setPositionNum(String positionNum) {
|
this.positionNum = positionNum;
|
}
|
|
public String getqName() {
|
return qName;
|
}
|
|
public void setqName(String qName) {
|
this.qName = qName;
|
}
|
|
public String getqUsage() {
|
return qUsage;
|
}
|
|
public void setqUsage(String qUsage) {
|
this.qUsage = qUsage;
|
}
|
|
//型号
|
public String getModel() {
|
return model;
|
}
|
|
public void setModel(String model) {
|
this.model = model;
|
}
|
//单位部门外键
|
public Long getDepartmentId() {
|
return departmentId;
|
}
|
|
public void setDepartmentId(Long departmentId) {
|
this.departmentId = departmentId;
|
}
|
//设置部位
|
public String getSetPart() {
|
return setPart;
|
}
|
|
public void setSetPart(String setPart) {
|
this.setPart = setPart;
|
}
|
//生产日期
|
public Timestamp getProduceTime() {
|
return produceTime;
|
}
|
|
public void setProduceTime(Timestamp produceTime) {
|
this.produceTime = produceTime;
|
}
|
//使用期限(天)
|
public String getUseEndDay() {
|
return useEndDay;
|
}
|
|
public void setUseEndDay(String useEndDay) {
|
this.useEndDay = useEndDay;
|
}
|
//生命周期 1:已使用 2:库存中 3:报废
|
public Integer getLifeCycle() {
|
return lifeCycle;
|
}
|
|
public void setLifeCycle(Integer lifeCycle) {
|
this.lifeCycle = lifeCycle;
|
}
|
//投用日期
|
public Timestamp getUseDate() {
|
return useDate;
|
}
|
|
public void setUseDate(Timestamp useDate) {
|
this.useDate = useDate;
|
}
|
//维修状态 1:维修中 2:已修好
|
public Integer getRepairStatus() {
|
return repairStatus;
|
}
|
|
public void setRepairStatus(Integer repairStatus) {
|
this.repairStatus = repairStatus;
|
}
|
//停用状态 1:停用 2.在用 3.维修 4.报废
|
public Integer getStopStatus() {
|
return stopStatus;
|
}
|
|
public void setStopStatus(Integer stopStatus) {
|
this.stopStatus = stopStatus;
|
}
|
//上次检查日期
|
public Timestamp getPreviousCheckDate() {
|
return previousCheckDate;
|
}
|
|
public void setPreviousCheckDate(Timestamp previousCheckDate) {
|
this.previousCheckDate = previousCheckDate;
|
}
|
//上次检测日期
|
public Timestamp getPreviousTestDate() {
|
return previousTestDate;
|
}
|
|
public void setPreviousTestDate(Timestamp previousTestDate) {
|
this.previousTestDate = previousTestDate;
|
}
|
//上次保养日期
|
public Timestamp getPreviousTakecareDate() {
|
return previousTakecareDate;
|
}
|
|
public void setPreviousTakecareDate(Timestamp previousTakecareDate) {
|
this.previousTakecareDate = previousTakecareDate;
|
}
|
//下次检查日期
|
public Timestamp getNextCheckDate() {
|
return nextCheckDate;
|
}
|
|
public void setNextCheckDate(Timestamp nextCheckDate) {
|
this.nextCheckDate = nextCheckDate;
|
}
|
//下次检测日期
|
public Timestamp getNextTestDate() {
|
return nextTestDate;
|
}
|
|
public void setNextTestDate(Timestamp nextTestDate) {
|
this.nextTestDate = nextTestDate;
|
}
|
//下次保养日期
|
public Timestamp getNextTakecareDate() {
|
return nextTakecareDate;
|
}
|
|
public void setNextTakecareDate(Timestamp nextTakecareDate) {
|
this.nextTakecareDate = nextTakecareDate;
|
}
|
//负责人ID外键
|
public Long getLeadingPersonId() {
|
return leadingPersonId;
|
}
|
|
public void setLeadingPersonId(Long leadingPersonId) {
|
this.leadingPersonId = leadingPersonId;
|
}
|
//负责人部门外键
|
public Long getLeadingPersonDepartmentId() {
|
return leadingPersonDepartmentId;
|
}
|
|
public void setLeadingPersonDepartmentId(Long leadingPersonDepartmentId) {
|
this.leadingPersonDepartmentId = leadingPersonDepartmentId;
|
}
|
//供应商
|
public String getSupplyName() {
|
return supplyName;
|
}
|
|
public void setSupplyName(String supplyName) {
|
this.supplyName = supplyName;
|
}
|
//使用说明
|
public String getUseMemo() {
|
return useMemo;
|
}
|
|
public void setUseMemo(String useMemo) {
|
this.useMemo = useMemo;
|
}
|
//是否检查 1:是 2:否
|
public Integer getIsNeedCheck() {
|
return isNeedCheck;
|
}
|
|
public void setIsNeedCheck(Integer isNeedCheck) {
|
this.isNeedCheck = isNeedCheck;
|
}
|
//检查周期
|
public String getCheckCycle() {
|
return checkCycle;
|
}
|
|
public void setCheckCycle(String checkCycle) {
|
this.checkCycle = checkCycle;
|
}
|
//检查提前提醒
|
public String getCheckWarn() {
|
return checkWarn;
|
}
|
|
public void setCheckWarn(String checkWarn) {
|
this.checkWarn = checkWarn;
|
}
|
//是否检测 1:是 2:否
|
public Integer getIsNeedTest() {
|
return isNeedTest;
|
}
|
|
public void setIsNeedTest(Integer isNeedTest) {
|
this.isNeedTest = isNeedTest;
|
}
|
//检测周期
|
public String getTestCycle() {
|
return testCycle;
|
}
|
|
public void setTestCycle(String testCycle) {
|
this.testCycle = testCycle;
|
}
|
//检测提前提醒
|
public String getTestWarn() {
|
return testWarn;
|
}
|
|
public void setTestWarn(String testWarn) {
|
this.testWarn = testWarn;
|
}
|
//是否保养 1:是 2:否
|
public Integer getIsNeedTakecare() {
|
return isNeedTakecare;
|
}
|
|
public void setIsNeedTakecare(Integer isNeedTakecare) {
|
this.isNeedTakecare = isNeedTakecare;
|
}
|
//检查内容
|
public String getCheckContent() {
|
return checkContent;
|
}
|
|
public void setCheckContent(String checkContent) {
|
this.checkContent = checkContent;
|
}
|
//负责部门/外键
|
public Long getLeadingDepartmentId() {
|
return leadingDepartmentId;
|
}
|
|
public void setLeadingDepartmentId(Long leadingDepartmentId) {
|
this.leadingDepartmentId = leadingDepartmentId;
|
}
|
//检查指标
|
public String getCheckPoint() {
|
return checkPoint;
|
}
|
|
public void setCheckPoint(String checkPoint) {
|
this.checkPoint = checkPoint;
|
}
|
//预警值
|
public String getAlertNum() {
|
return alertNum;
|
}
|
|
public void setAlertNum(String alertNum) {
|
this.alertNum = alertNum;
|
}
|
//联锁值
|
public String getLockNum() {
|
return lockNum;
|
}
|
|
public void setLockNum(String lockNum) {
|
this.lockNum = lockNum;
|
}
|
//停用理由
|
public String getStopReason() {
|
return stopReason;
|
}
|
|
public void setStopReason(String stopReason) {
|
this.stopReason = stopReason;
|
}
|
//停用后措施
|
public String getAfterStopStep() {
|
return afterStopStep;
|
}
|
|
public void setAfterStopStep(String afterStopStep) {
|
this.afterStopStep = afterStopStep;
|
}
|
//实际停用日期
|
public Timestamp getActualStopDate() {
|
return actualStopDate;
|
}
|
|
public void setActualStopDate(Timestamp actualStopDate) {
|
this.actualStopDate = actualStopDate;
|
}
|
//停用提交人/外键
|
public Long getStopSubmitPersonId() {
|
return stopSubmitPersonId;
|
}
|
|
public void setStopSubmitPersonId(Long stopSubmitPersonId) {
|
this.stopSubmitPersonId = stopSubmitPersonId;
|
}
|
//停用提交日期
|
public Timestamp getStopSubmitDate() {
|
return stopSubmitDate;
|
}
|
|
public void setStopSubmitDate(Timestamp stopSubmitDate) {
|
this.stopSubmitDate = stopSubmitDate;
|
}
|
//恢复理由
|
public String getRecoveryReason() {
|
return recoveryReason;
|
}
|
|
public void setRecoveryReason(String recoveryReason) {
|
this.recoveryReason = recoveryReason;
|
}
|
//恢复填报日期
|
public Timestamp getRecoverySubmitDate() {
|
return recoverySubmitDate;
|
}
|
|
public void setRecoverySubmitDate(Timestamp recoverySubmitDate) {
|
this.recoverySubmitDate = recoverySubmitDate;
|
}
|
//实际恢复日期
|
public Timestamp getActualRecoveryDate() {
|
return actualRecoveryDate;
|
}
|
|
public void setActualRecoveryDate(Timestamp actualRecoveryDate) {
|
this.actualRecoveryDate = actualRecoveryDate;
|
}
|
//报废理由
|
public String getDestoryReason() {
|
return destoryReason;
|
}
|
|
public void setDestoryReason(String destoryReason) {
|
this.destoryReason = destoryReason;
|
}
|
//报废填报日期
|
public Timestamp getDestorySubmitDate() {
|
return destorySubmitDate;
|
}
|
|
public void setDestorySubmitDate(Timestamp destorySubmitDate) {
|
this.destorySubmitDate = destorySubmitDate;
|
}
|
//实际报废日期
|
public Timestamp getActualDestoryDate() {
|
return actualDestoryDate;
|
}
|
|
public void setActualDestoryDate(Timestamp actualDestoryDate) {
|
this.actualDestoryDate = actualDestoryDate;
|
}
|
|
}
|