package com.qianwen.smartman.modules.tpm.dto; import com.fasterxml.jackson.databind.annotation.JsonSerialize; import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; import java.util.Date; import java.util.List; import com.qianwen.smartman.modules.cps.vo.RepairRecordMaterialAddVO; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/dto/RepairRecordAddDTO.class */ public class RepairRecordAddDTO implements Serializable { @ApiModelProperty("维修单号") private String recordCode; @JsonSerialize(using = ToStringSerializer.class) @ApiModelProperty("维修申请id") private Long repairApplyId; @ApiModelProperty("维修记录状态:待确认 1 已确认 2") private Integer recordStatus; @ApiModelProperty("维修记录类型: 临时维修 1 例行维修 2") private Integer recordType; @ApiModelProperty("故障码") private String errorCode; @ApiModelProperty("维修开始时间") private Date repairStartTime; @ApiModelProperty("维修完成时间") private Date repairEndTime; @ApiModelProperty("维修用时 单位:分钟") private Integer repairTime; @JsonSerialize(using = ToStringSerializer.class) @ApiModelProperty("维修负责人id") private Long repairUserId; @ApiModelProperty("维修负责人名称") private String repairUserName; @ApiModelProperty("故障分析") private String malfunctionDetails; @ApiModelProperty("发生时间 (例行维修)") private Date malfunctionTime; @JsonSerialize(using = ToStringSerializer.class) @ApiModelProperty("设备id") private Long deviceId; @ApiModelProperty("设备编码") private String deviceCode; @ApiModelProperty("设备名称") private String deviceName; @JsonSerialize(using = ToStringSerializer.class) @ApiModelProperty("设备类型id") private Long deviceTypeId; @ApiModelProperty("设备类型名称") private String deviceTypeName; @ApiModelProperty("影响生产:是 1 , 否 2") private Integer isAffect; @ApiModelProperty("维修记录关联附件") List recordFileList; @ApiModelProperty("维修记录关联的备品备件") List materialAddDTOList; @JsonSerialize(using = ToStringSerializer.class) @ApiModelProperty("故障类型id") private Long malfunctionId; @ApiModelProperty("故障类型编码") private String malfunctionCode; @ApiModelProperty("故障类型") private String malfunctionName; @JsonSerialize(using = ToStringSerializer.class) @ApiModelProperty("规则id") private Long codeRuleId; @ApiModelProperty("维修记录类型名称") private String recordTypeName; public RepairRecordAddDTO setRecordCode(final String recordCode) { this.recordCode = recordCode; return this; } public RepairRecordAddDTO setRepairApplyId(final Long repairApplyId) { this.repairApplyId = repairApplyId; return this; } public RepairRecordAddDTO setRecordStatus(final Integer recordStatus) { this.recordStatus = recordStatus; return this; } public RepairRecordAddDTO setRecordType(final Integer recordType) { this.recordType = recordType; return this; } public RepairRecordAddDTO setErrorCode(final String errorCode) { this.errorCode = errorCode; return this; } public RepairRecordAddDTO setRepairStartTime(final Date repairStartTime) { this.repairStartTime = repairStartTime; return this; } public RepairRecordAddDTO setRepairEndTime(final Date repairEndTime) { this.repairEndTime = repairEndTime; return this; } public RepairRecordAddDTO setRepairTime(final Integer repairTime) { this.repairTime = repairTime; return this; } public RepairRecordAddDTO setRepairUserId(final Long repairUserId) { this.repairUserId = repairUserId; return this; } public RepairRecordAddDTO setRepairUserName(final String repairUserName) { this.repairUserName = repairUserName; return this; } public RepairRecordAddDTO setMalfunctionDetails(final String malfunctionDetails) { this.malfunctionDetails = malfunctionDetails; return this; } public RepairRecordAddDTO setMalfunctionTime(final Date malfunctionTime) { this.malfunctionTime = malfunctionTime; return this; } public RepairRecordAddDTO setDeviceId(final Long deviceId) { this.deviceId = deviceId; return this; } public RepairRecordAddDTO setDeviceCode(final String deviceCode) { this.deviceCode = deviceCode; return this; } public RepairRecordAddDTO setDeviceName(final String deviceName) { this.deviceName = deviceName; return this; } public RepairRecordAddDTO setDeviceTypeId(final Long deviceTypeId) { this.deviceTypeId = deviceTypeId; return this; } public RepairRecordAddDTO setDeviceTypeName(final String deviceTypeName) { this.deviceTypeName = deviceTypeName; return this; } public RepairRecordAddDTO setIsAffect(final Integer isAffect) { this.isAffect = isAffect; return this; } public RepairRecordAddDTO setRecordFileList(final List recordFileList) { this.recordFileList = recordFileList; return this; } public RepairRecordAddDTO setMaterialAddDTOList(final List materialAddDTOList) { this.materialAddDTOList = materialAddDTOList; return this; } public RepairRecordAddDTO setMalfunctionId(final Long malfunctionId) { this.malfunctionId = malfunctionId; return this; } public RepairRecordAddDTO setMalfunctionCode(final String malfunctionCode) { this.malfunctionCode = malfunctionCode; return this; } public RepairRecordAddDTO setMalfunctionName(final String malfunctionName) { this.malfunctionName = malfunctionName; return this; } public RepairRecordAddDTO setCodeRuleId(final Long codeRuleId) { this.codeRuleId = codeRuleId; return this; } public RepairRecordAddDTO setRecordTypeName(final String recordTypeName) { this.recordTypeName = recordTypeName; return this; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof RepairRecordAddDTO) { RepairRecordAddDTO other = (RepairRecordAddDTO) o; if (other.canEqual(this)) { Object this$repairApplyId = getRepairApplyId(); Object other$repairApplyId = other.getRepairApplyId(); if (this$repairApplyId == null) { if (other$repairApplyId != null) { return false; } } else if (!this$repairApplyId.equals(other$repairApplyId)) { return false; } Object this$recordStatus = getRecordStatus(); Object other$recordStatus = other.getRecordStatus(); if (this$recordStatus == null) { if (other$recordStatus != null) { return false; } } else if (!this$recordStatus.equals(other$recordStatus)) { 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$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$repairUserId = getRepairUserId(); Object other$repairUserId = other.getRepairUserId(); if (this$repairUserId == null) { if (other$repairUserId != null) { return false; } } else if (!this$repairUserId.equals(other$repairUserId)) { return false; } Object this$deviceId = getDeviceId(); Object other$deviceId = other.getDeviceId(); if (this$deviceId == null) { if (other$deviceId != null) { return false; } } else if (!this$deviceId.equals(other$deviceId)) { return false; } Object this$deviceTypeId = getDeviceTypeId(); Object other$deviceTypeId = other.getDeviceTypeId(); if (this$deviceTypeId == null) { if (other$deviceTypeId != null) { return false; } } else if (!this$deviceTypeId.equals(other$deviceTypeId)) { return false; } Object this$isAffect = getIsAffect(); Object other$isAffect = other.getIsAffect(); if (this$isAffect == null) { if (other$isAffect != null) { return false; } } else if (!this$isAffect.equals(other$isAffect)) { return false; } Object this$malfunctionId = getMalfunctionId(); Object other$malfunctionId = other.getMalfunctionId(); if (this$malfunctionId == null) { if (other$malfunctionId != null) { return false; } } else if (!this$malfunctionId.equals(other$malfunctionId)) { return false; } Object this$codeRuleId = getCodeRuleId(); Object other$codeRuleId = other.getCodeRuleId(); if (this$codeRuleId == null) { if (other$codeRuleId != null) { return false; } } else if (!this$codeRuleId.equals(other$codeRuleId)) { return false; } 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$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$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$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(); if (this$malfunctionDetails == null) { if (other$malfunctionDetails != null) { return false; } } else if (!this$malfunctionDetails.equals(other$malfunctionDetails)) { 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$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$recordFileList = getRecordFileList(); Object other$recordFileList = other.getRecordFileList(); if (this$recordFileList == null) { if (other$recordFileList != null) { return false; } } else if (!this$recordFileList.equals(other$recordFileList)) { return false; } Object this$materialAddDTOList = getMaterialAddDTOList(); Object other$materialAddDTOList = other.getMaterialAddDTOList(); if (this$materialAddDTOList == null) { if (other$materialAddDTOList != null) { return false; } } else if (!this$materialAddDTOList.equals(other$materialAddDTOList)) { return false; } Object this$malfunctionCode = getMalfunctionCode(); Object other$malfunctionCode = other.getMalfunctionCode(); if (this$malfunctionCode == null) { if (other$malfunctionCode != null) { return false; } } else if (!this$malfunctionCode.equals(other$malfunctionCode)) { return false; } Object this$malfunctionName = getMalfunctionName(); Object other$malfunctionName = other.getMalfunctionName(); if (this$malfunctionName == null) { if (other$malfunctionName != null) { return false; } } else if (!this$malfunctionName.equals(other$malfunctionName)) { return false; } Object this$recordTypeName = getRecordTypeName(); Object other$recordTypeName = other.getRecordTypeName(); return this$recordTypeName == null ? other$recordTypeName == null : this$recordTypeName.equals(other$recordTypeName); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof RepairRecordAddDTO; } public int hashCode() { Object $repairApplyId = getRepairApplyId(); int result = (1 * 59) + ($repairApplyId == null ? 43 : $repairApplyId.hashCode()); Object $recordStatus = getRecordStatus(); int result2 = (result * 59) + ($recordStatus == null ? 43 : $recordStatus.hashCode()); Object $recordType = getRecordType(); int result3 = (result2 * 59) + ($recordType == null ? 43 : $recordType.hashCode()); Object $repairTime = getRepairTime(); int result4 = (result3 * 59) + ($repairTime == null ? 43 : $repairTime.hashCode()); Object $repairUserId = getRepairUserId(); int result5 = (result4 * 59) + ($repairUserId == null ? 43 : $repairUserId.hashCode()); Object $deviceId = getDeviceId(); int result6 = (result5 * 59) + ($deviceId == null ? 43 : $deviceId.hashCode()); Object $deviceTypeId = getDeviceTypeId(); int result7 = (result6 * 59) + ($deviceTypeId == null ? 43 : $deviceTypeId.hashCode()); Object $isAffect = getIsAffect(); int result8 = (result7 * 59) + ($isAffect == null ? 43 : $isAffect.hashCode()); Object $malfunctionId = getMalfunctionId(); int result9 = (result8 * 59) + ($malfunctionId == null ? 43 : $malfunctionId.hashCode()); Object $codeRuleId = getCodeRuleId(); int result10 = (result9 * 59) + ($codeRuleId == null ? 43 : $codeRuleId.hashCode()); Object $recordCode = getRecordCode(); int result11 = (result10 * 59) + ($recordCode == null ? 43 : $recordCode.hashCode()); Object $errorCode = getErrorCode(); int result12 = (result11 * 59) + ($errorCode == null ? 43 : $errorCode.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 $repairUserName = getRepairUserName(); int result15 = (result14 * 59) + ($repairUserName == null ? 43 : $repairUserName.hashCode()); Object $malfunctionDetails = getMalfunctionDetails(); int result16 = (result15 * 59) + ($malfunctionDetails == null ? 43 : $malfunctionDetails.hashCode()); Object $malfunctionTime = getMalfunctionTime(); int result17 = (result16 * 59) + ($malfunctionTime == null ? 43 : $malfunctionTime.hashCode()); Object $deviceCode = getDeviceCode(); int result18 = (result17 * 59) + ($deviceCode == null ? 43 : $deviceCode.hashCode()); Object $deviceName = getDeviceName(); int result19 = (result18 * 59) + ($deviceName == null ? 43 : $deviceName.hashCode()); Object $deviceTypeName = getDeviceTypeName(); int result20 = (result19 * 59) + ($deviceTypeName == null ? 43 : $deviceTypeName.hashCode()); Object $recordFileList = getRecordFileList(); int result21 = (result20 * 59) + ($recordFileList == null ? 43 : $recordFileList.hashCode()); Object $materialAddDTOList = getMaterialAddDTOList(); int result22 = (result21 * 59) + ($materialAddDTOList == null ? 43 : $materialAddDTOList.hashCode()); Object $malfunctionCode = getMalfunctionCode(); int result23 = (result22 * 59) + ($malfunctionCode == null ? 43 : $malfunctionCode.hashCode()); Object $malfunctionName = getMalfunctionName(); int result24 = (result23 * 59) + ($malfunctionName == null ? 43 : $malfunctionName.hashCode()); Object $recordTypeName = getRecordTypeName(); return (result24 * 59) + ($recordTypeName == null ? 43 : $recordTypeName.hashCode()); } public String toString() { return "RepairRecordAddDTO(recordCode=" + getRecordCode() + ", repairApplyId=" + getRepairApplyId() + ", recordStatus=" + getRecordStatus() + ", recordType=" + getRecordType() + ", errorCode=" + getErrorCode() + ", repairStartTime=" + getRepairStartTime() + ", repairEndTime=" + getRepairEndTime() + ", repairTime=" + getRepairTime() + ", repairUserId=" + getRepairUserId() + ", repairUserName=" + getRepairUserName() + ", malfunctionDetails=" + getMalfunctionDetails() + ", malfunctionTime=" + getMalfunctionTime() + ", deviceId=" + getDeviceId() + ", deviceCode=" + getDeviceCode() + ", deviceName=" + getDeviceName() + ", deviceTypeId=" + getDeviceTypeId() + ", deviceTypeName=" + getDeviceTypeName() + ", isAffect=" + getIsAffect() + ", recordFileList=" + getRecordFileList() + ", materialAddDTOList=" + getMaterialAddDTOList() + ", malfunctionId=" + getMalfunctionId() + ", malfunctionCode=" + getMalfunctionCode() + ", malfunctionName=" + getMalfunctionName() + ", codeRuleId=" + getCodeRuleId() + ", recordTypeName=" + getRecordTypeName() + ")"; } public String getRecordCode() { return this.recordCode; } public Long getRepairApplyId() { return this.repairApplyId; } public Integer getRecordStatus() { return this.recordStatus; } public Integer getRecordType() { return this.recordType; } public String getErrorCode() { return this.errorCode; } public Date getRepairStartTime() { return this.repairStartTime; } public Date getRepairEndTime() { return this.repairEndTime; } public Integer getRepairTime() { return this.repairTime; } public Long getRepairUserId() { return this.repairUserId; } public String getRepairUserName() { return this.repairUserName; } public String getMalfunctionDetails() { return this.malfunctionDetails; } public Date getMalfunctionTime() { return this.malfunctionTime; } public Long getDeviceId() { return this.deviceId; } public String getDeviceCode() { return this.deviceCode; } public String getDeviceName() { return this.deviceName; } public Long getDeviceTypeId() { return this.deviceTypeId; } public String getDeviceTypeName() { return this.deviceTypeName; } public Integer getIsAffect() { return this.isAffect; } public List getRecordFileList() { return this.recordFileList; } public List getMaterialAddDTOList() { return this.materialAddDTOList; } public Long getMalfunctionId() { return this.malfunctionId; } public String getMalfunctionCode() { return this.malfunctionCode; } public String getMalfunctionName() { return this.malfunctionName; } public Long getCodeRuleId() { return this.codeRuleId; } public String getRecordTypeName() { return this.recordTypeName; } }