package com.qianwen.smartman.modules.tpm.vo.excel; import com.alibaba.excel.annotation.ExcelProperty; import com.alibaba.excel.annotation.write.style.ColumnWidth; import com.alibaba.excel.annotation.write.style.ContentRowHeight; import com.alibaba.excel.annotation.write.style.HeadRowHeight; import io.swagger.annotations.ApiModelProperty; import java.util.Date; @HeadRowHeight(20) @ColumnWidth(25) @ContentRowHeight(18) /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/vo/excel/RepairRecordExcelVO.class */ public class RepairRecordExcelVO { @ColumnWidth(15) @ExcelProperty({"维修单号"}) @ApiModelProperty("维修单号") private String recordCode; @ColumnWidth(15) @ExcelProperty({"维修申请单号"}) @ApiModelProperty("维修申请单号") private String applyCode; @ColumnWidth(15) @ExcelProperty({"维修单类型"}) @ApiModelProperty("维修记录类型: 临时维修 1 例行维修 2") private String recordType; @ColumnWidth(15) @ExcelProperty({"设备编码"}) @ApiModelProperty("设备编码") private String deviceCode; @ColumnWidth(15) @ExcelProperty({"设备名称"}) @ApiModelProperty("设备名称") private String deviceName; @ColumnWidth(15) @ExcelProperty({"设备类型"}) @ApiModelProperty("设备类型") private String deviceTypeName; @ColumnWidth(15) @ExcelProperty({"申请时间"}) @ApiModelProperty("申请时间") private Date applyTime; @ColumnWidth(15) @ExcelProperty({"申请人"}) @ApiModelProperty("申请人") private String applyUserName; @ColumnWidth(15) @ExcelProperty({"故障详情"}) @ApiModelProperty("故障详情") private String description; @ColumnWidth(15) @ExcelProperty({"故障码"}) @ApiModelProperty("故障码") private String errorCode; @ColumnWidth(15) @ExcelProperty({"发生时间"}) @ApiModelProperty("发生时间") private Date malfunctionTime; @ColumnWidth(15) @ExcelProperty({"紧急度"}) @ApiModelProperty("紧急度") private String urgency; @ColumnWidth(15) @ExcelProperty({"维修开始时间"}) @ApiModelProperty("维修开始时间") private Date repairStartTime; @ColumnWidth(15) @ExcelProperty({"维修结束时间"}) @ApiModelProperty("维修结束时间") private Date repairEndTime; @ColumnWidth(15) @ExcelProperty({"维修用时"}) @ApiModelProperty("维修用时") private String repairTime; @ColumnWidth(15) @ExcelProperty({"维修负责人"}) @ApiModelProperty("维修负责人") private String repairUserName; @ColumnWidth(15) @ExcelProperty({"故障分析"}) @ApiModelProperty("故障分析") private String malfunctionDetails; public RepairRecordExcelVO setRecordCode(final String recordCode) { this.recordCode = recordCode; return this; } public RepairRecordExcelVO setApplyCode(final String applyCode) { this.applyCode = applyCode; return this; } public RepairRecordExcelVO setRecordType(final String recordType) { this.recordType = recordType; return this; } public RepairRecordExcelVO setDeviceCode(final String deviceCode) { this.deviceCode = deviceCode; return this; } public RepairRecordExcelVO setDeviceName(final String deviceName) { this.deviceName = deviceName; return this; } public RepairRecordExcelVO setDeviceTypeName(final String deviceTypeName) { this.deviceTypeName = deviceTypeName; return this; } public RepairRecordExcelVO setApplyTime(final Date applyTime) { this.applyTime = applyTime; return this; } public RepairRecordExcelVO setApplyUserName(final String applyUserName) { this.applyUserName = applyUserName; return this; } public RepairRecordExcelVO setDescription(final String description) { this.description = description; return this; } public RepairRecordExcelVO setErrorCode(final String errorCode) { this.errorCode = errorCode; return this; } public RepairRecordExcelVO setMalfunctionTime(final Date malfunctionTime) { this.malfunctionTime = malfunctionTime; return this; } public RepairRecordExcelVO setUrgency(final String urgency) { this.urgency = urgency; return this; } public RepairRecordExcelVO setRepairStartTime(final Date repairStartTime) { this.repairStartTime = repairStartTime; return this; } public RepairRecordExcelVO setRepairEndTime(final Date repairEndTime) { this.repairEndTime = repairEndTime; return this; } public RepairRecordExcelVO setRepairTime(final String repairTime) { this.repairTime = repairTime; return this; } public RepairRecordExcelVO setRepairUserName(final String repairUserName) { this.repairUserName = repairUserName; return this; } public RepairRecordExcelVO setMalfunctionDetails(final String malfunctionDetails) { this.malfunctionDetails = malfunctionDetails; return this; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof RepairRecordExcelVO) { RepairRecordExcelVO other = (RepairRecordExcelVO) o; if (other.canEqual(this)) { Object this$recordCode = getRecordCode(); Object other$recordCode = other.getRecordCode(); if (this$recordCode == null) { if (other$recordCode != null) { return false; } } else if (!this$recordCode.equals(other$recordCode)) { return false; } Object this$applyCode = getApplyCode(); Object other$applyCode = other.getApplyCode(); if (this$applyCode == null) { if (other$applyCode != null) { return false; } } else if (!this$applyCode.equals(other$applyCode)) { return false; } Object this$recordType = getRecordType(); Object other$recordType = other.getRecordType(); if (this$recordType == null) { if (other$recordType != null) { return false; } } else if (!this$recordType.equals(other$recordType)) { return false; } Object this$deviceCode = getDeviceCode(); Object other$deviceCode = other.getDeviceCode(); if (this$deviceCode == null) { if (other$deviceCode != null) { return false; } } else if (!this$deviceCode.equals(other$deviceCode)) { return false; } Object this$deviceName = getDeviceName(); Object other$deviceName = other.getDeviceName(); if (this$deviceName == null) { if (other$deviceName != null) { return false; } } else if (!this$deviceName.equals(other$deviceName)) { return false; } Object this$deviceTypeName = getDeviceTypeName(); Object other$deviceTypeName = other.getDeviceTypeName(); if (this$deviceTypeName == null) { if (other$deviceTypeName != null) { return false; } } else if (!this$deviceTypeName.equals(other$deviceTypeName)) { return false; } Object this$applyTime = getApplyTime(); Object other$applyTime = other.getApplyTime(); if (this$applyTime == null) { if (other$applyTime != null) { return false; } } else if (!this$applyTime.equals(other$applyTime)) { return false; } Object this$applyUserName = getApplyUserName(); Object other$applyUserName = other.getApplyUserName(); if (this$applyUserName == null) { if (other$applyUserName != null) { return false; } } else if (!this$applyUserName.equals(other$applyUserName)) { return false; } Object this$description = getDescription(); Object other$description = other.getDescription(); if (this$description == null) { if (other$description != null) { return false; } } else if (!this$description.equals(other$description)) { return false; } Object this$errorCode = getErrorCode(); Object other$errorCode = other.getErrorCode(); if (this$errorCode == null) { if (other$errorCode != null) { return false; } } else if (!this$errorCode.equals(other$errorCode)) { return false; } Object this$malfunctionTime = getMalfunctionTime(); Object other$malfunctionTime = other.getMalfunctionTime(); if (this$malfunctionTime == null) { if (other$malfunctionTime != null) { return false; } } else if (!this$malfunctionTime.equals(other$malfunctionTime)) { return false; } Object this$urgency = getUrgency(); Object other$urgency = other.getUrgency(); if (this$urgency == null) { if (other$urgency != null) { return false; } } else if (!this$urgency.equals(other$urgency)) { return false; } Object this$repairStartTime = getRepairStartTime(); Object other$repairStartTime = other.getRepairStartTime(); if (this$repairStartTime == null) { if (other$repairStartTime != null) { return false; } } else if (!this$repairStartTime.equals(other$repairStartTime)) { return false; } Object this$repairEndTime = getRepairEndTime(); Object other$repairEndTime = other.getRepairEndTime(); if (this$repairEndTime == null) { if (other$repairEndTime != null) { return false; } } else if (!this$repairEndTime.equals(other$repairEndTime)) { return false; } Object this$repairTime = getRepairTime(); Object other$repairTime = other.getRepairTime(); if (this$repairTime == null) { if (other$repairTime != null) { return false; } } else if (!this$repairTime.equals(other$repairTime)) { return false; } Object this$repairUserName = getRepairUserName(); Object other$repairUserName = other.getRepairUserName(); if (this$repairUserName == null) { if (other$repairUserName != null) { return false; } } else if (!this$repairUserName.equals(other$repairUserName)) { return false; } Object this$malfunctionDetails = getMalfunctionDetails(); Object other$malfunctionDetails = other.getMalfunctionDetails(); return this$malfunctionDetails == null ? other$malfunctionDetails == null : this$malfunctionDetails.equals(other$malfunctionDetails); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof RepairRecordExcelVO; } public int hashCode() { Object $recordCode = getRecordCode(); int result = (1 * 59) + ($recordCode == null ? 43 : $recordCode.hashCode()); Object $applyCode = getApplyCode(); int result2 = (result * 59) + ($applyCode == null ? 43 : $applyCode.hashCode()); Object $recordType = getRecordType(); int result3 = (result2 * 59) + ($recordType == null ? 43 : $recordType.hashCode()); Object $deviceCode = getDeviceCode(); int result4 = (result3 * 59) + ($deviceCode == null ? 43 : $deviceCode.hashCode()); Object $deviceName = getDeviceName(); int result5 = (result4 * 59) + ($deviceName == null ? 43 : $deviceName.hashCode()); Object $deviceTypeName = getDeviceTypeName(); int result6 = (result5 * 59) + ($deviceTypeName == null ? 43 : $deviceTypeName.hashCode()); Object $applyTime = getApplyTime(); int result7 = (result6 * 59) + ($applyTime == null ? 43 : $applyTime.hashCode()); Object $applyUserName = getApplyUserName(); int result8 = (result7 * 59) + ($applyUserName == null ? 43 : $applyUserName.hashCode()); Object $description = getDescription(); int result9 = (result8 * 59) + ($description == null ? 43 : $description.hashCode()); Object $errorCode = getErrorCode(); int result10 = (result9 * 59) + ($errorCode == null ? 43 : $errorCode.hashCode()); Object $malfunctionTime = getMalfunctionTime(); int result11 = (result10 * 59) + ($malfunctionTime == null ? 43 : $malfunctionTime.hashCode()); Object $urgency = getUrgency(); int result12 = (result11 * 59) + ($urgency == null ? 43 : $urgency.hashCode()); Object $repairStartTime = getRepairStartTime(); int result13 = (result12 * 59) + ($repairStartTime == null ? 43 : $repairStartTime.hashCode()); Object $repairEndTime = getRepairEndTime(); int result14 = (result13 * 59) + ($repairEndTime == null ? 43 : $repairEndTime.hashCode()); Object $repairTime = getRepairTime(); int result15 = (result14 * 59) + ($repairTime == null ? 43 : $repairTime.hashCode()); Object $repairUserName = getRepairUserName(); int result16 = (result15 * 59) + ($repairUserName == null ? 43 : $repairUserName.hashCode()); Object $malfunctionDetails = getMalfunctionDetails(); return (result16 * 59) + ($malfunctionDetails == null ? 43 : $malfunctionDetails.hashCode()); } public String toString() { return "RepairRecordExcelVO(recordCode=" + getRecordCode() + ", applyCode=" + getApplyCode() + ", recordType=" + getRecordType() + ", deviceCode=" + getDeviceCode() + ", deviceName=" + getDeviceName() + ", deviceTypeName=" + getDeviceTypeName() + ", applyTime=" + getApplyTime() + ", applyUserName=" + getApplyUserName() + ", description=" + getDescription() + ", errorCode=" + getErrorCode() + ", malfunctionTime=" + getMalfunctionTime() + ", urgency=" + getUrgency() + ", repairStartTime=" + getRepairStartTime() + ", repairEndTime=" + getRepairEndTime() + ", repairTime=" + getRepairTime() + ", repairUserName=" + getRepairUserName() + ", malfunctionDetails=" + getMalfunctionDetails() + ")"; } public String getRecordCode() { return this.recordCode; } public String getApplyCode() { return this.applyCode; } public String getRecordType() { return this.recordType; } public String getDeviceCode() { return this.deviceCode; } public String getDeviceName() { return this.deviceName; } public String getDeviceTypeName() { return this.deviceTypeName; } public Date getApplyTime() { return this.applyTime; } public String getApplyUserName() { return this.applyUserName; } public String getDescription() { return this.description; } public String getErrorCode() { return this.errorCode; } public Date getMalfunctionTime() { return this.malfunctionTime; } public String getUrgency() { return this.urgency; } public Date getRepairStartTime() { return this.repairStartTime; } public Date getRepairEndTime() { return this.repairEndTime; } public String getRepairTime() { return this.repairTime; } public String getRepairUserName() { return this.repairUserName; } public String getMalfunctionDetails() { return this.malfunctionDetails; } }