package com.qianwen.smartman.modules.tpm.vo; import io.swagger.annotations.ApiModelProperty; import java.io.Serializable; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/vo/RepairRecordSearchVO.class */ public class RepairRecordSearchVO implements Serializable { @ApiModelProperty("维修记录单号") private String recordCode; @ApiModelProperty("机器编号") private String deviceCode; @ApiModelProperty("机器名称") private String deviceName; public void setRecordCode(final String recordCode) { this.recordCode = recordCode; } public void setDeviceCode(final String deviceCode) { this.deviceCode = deviceCode; } public void setDeviceName(final String deviceName) { this.deviceName = deviceName; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof RepairRecordSearchVO) { RepairRecordSearchVO other = (RepairRecordSearchVO) 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$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(); return this$deviceName == null ? other$deviceName == null : this$deviceName.equals(other$deviceName); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof RepairRecordSearchVO; } public int hashCode() { Object $recordCode = getRecordCode(); int result = (1 * 59) + ($recordCode == null ? 43 : $recordCode.hashCode()); Object $deviceCode = getDeviceCode(); int result2 = (result * 59) + ($deviceCode == null ? 43 : $deviceCode.hashCode()); Object $deviceName = getDeviceName(); return (result2 * 59) + ($deviceName == null ? 43 : $deviceName.hashCode()); } public String toString() { return "RepairRecordSearchVO(recordCode=" + getRecordCode() + ", deviceCode=" + getDeviceCode() + ", deviceName=" + getDeviceName() + ")"; } public String getRecordCode() { return this.recordCode; } public String getDeviceCode() { return this.deviceCode; } public String getDeviceName() { return this.deviceName; } }