package com.qianwen.smartman.modules.notify.dto; /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/dto/RepairMaintainDTO.class */ public class RepairMaintainDTO { private String deviceCode; private String deviceName; private String urgency; private String description; private String malfunctionName; public void setDeviceCode(final String deviceCode) { this.deviceCode = deviceCode; } public void setDeviceName(final String deviceName) { this.deviceName = deviceName; } public void setUrgency(final String urgency) { this.urgency = urgency; } public void setDescription(final String description) { this.description = description; } public void setMalfunctionName(final String malfunctionName) { this.malfunctionName = malfunctionName; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof RepairMaintainDTO) { RepairMaintainDTO other = (RepairMaintainDTO) o; if (other.canEqual(this)) { 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$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$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$malfunctionName = getMalfunctionName(); Object other$malfunctionName = other.getMalfunctionName(); return this$malfunctionName == null ? other$malfunctionName == null : this$malfunctionName.equals(other$malfunctionName); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof RepairMaintainDTO; } public int hashCode() { Object $deviceCode = getDeviceCode(); int result = (1 * 59) + ($deviceCode == null ? 43 : $deviceCode.hashCode()); Object $deviceName = getDeviceName(); int result2 = (result * 59) + ($deviceName == null ? 43 : $deviceName.hashCode()); Object $urgency = getUrgency(); int result3 = (result2 * 59) + ($urgency == null ? 43 : $urgency.hashCode()); Object $description = getDescription(); int result4 = (result3 * 59) + ($description == null ? 43 : $description.hashCode()); Object $malfunctionName = getMalfunctionName(); return (result4 * 59) + ($malfunctionName == null ? 43 : $malfunctionName.hashCode()); } public String toString() { return "RepairMaintainDTO(deviceCode=" + getDeviceCode() + ", deviceName=" + getDeviceName() + ", urgency=" + getUrgency() + ", description=" + getDescription() + ", malfunctionName=" + getMalfunctionName() + ")"; } public String getDeviceCode() { return this.deviceCode; } public String getDeviceName() { return this.deviceName; } public String getUrgency() { return this.urgency; } public String getDescription() { return this.description; } public String getMalfunctionName() { return this.malfunctionName; } }