package com.qianwen.smartman.modules.notify.dto;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/dto/RepairApplySendDTO.class */
|
public class RepairApplySendDTO {
|
private String code;
|
private String repairMaintainTable;
|
private String deviceCode;
|
private String deviceName;
|
private String urgency;
|
private String description;
|
private String malfunctionName;
|
private String urgencyStr;
|
|
public void setCode(final String code) {
|
this.code = code;
|
}
|
|
public void setRepairMaintainTable(final String repairMaintainTable) {
|
this.repairMaintainTable = repairMaintainTable;
|
}
|
|
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 void setUrgencyStr(final String urgencyStr) {
|
this.urgencyStr = urgencyStr;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof RepairApplySendDTO) {
|
RepairApplySendDTO other = (RepairApplySendDTO) o;
|
if (other.canEqual(this)) {
|
Object this$code = getCode();
|
Object other$code = other.getCode();
|
if (this$code == null) {
|
if (other$code != null) {
|
return false;
|
}
|
} else if (!this$code.equals(other$code)) {
|
return false;
|
}
|
Object this$repairMaintainTable = getRepairMaintainTable();
|
Object other$repairMaintainTable = other.getRepairMaintainTable();
|
if (this$repairMaintainTable == null) {
|
if (other$repairMaintainTable != null) {
|
return false;
|
}
|
} else if (!this$repairMaintainTable.equals(other$repairMaintainTable)) {
|
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$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();
|
if (this$malfunctionName == null) {
|
if (other$malfunctionName != null) {
|
return false;
|
}
|
} else if (!this$malfunctionName.equals(other$malfunctionName)) {
|
return false;
|
}
|
Object this$urgencyStr = getUrgencyStr();
|
Object other$urgencyStr = other.getUrgencyStr();
|
return this$urgencyStr == null ? other$urgencyStr == null : this$urgencyStr.equals(other$urgencyStr);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof RepairApplySendDTO;
|
}
|
|
public int hashCode() {
|
Object $code = getCode();
|
int result = (1 * 59) + ($code == null ? 43 : $code.hashCode());
|
Object $repairMaintainTable = getRepairMaintainTable();
|
int result2 = (result * 59) + ($repairMaintainTable == null ? 43 : $repairMaintainTable.hashCode());
|
Object $deviceCode = getDeviceCode();
|
int result3 = (result2 * 59) + ($deviceCode == null ? 43 : $deviceCode.hashCode());
|
Object $deviceName = getDeviceName();
|
int result4 = (result3 * 59) + ($deviceName == null ? 43 : $deviceName.hashCode());
|
Object $urgency = getUrgency();
|
int result5 = (result4 * 59) + ($urgency == null ? 43 : $urgency.hashCode());
|
Object $description = getDescription();
|
int result6 = (result5 * 59) + ($description == null ? 43 : $description.hashCode());
|
Object $malfunctionName = getMalfunctionName();
|
int result7 = (result6 * 59) + ($malfunctionName == null ? 43 : $malfunctionName.hashCode());
|
Object $urgencyStr = getUrgencyStr();
|
return (result7 * 59) + ($urgencyStr == null ? 43 : $urgencyStr.hashCode());
|
}
|
|
public String toString() {
|
return "RepairApplySendDTO(code=" + getCode() + ", repairMaintainTable=" + getRepairMaintainTable() + ", deviceCode=" + getDeviceCode() + ", deviceName=" + getDeviceName() + ", urgency=" + getUrgency() + ", description=" + getDescription() + ", malfunctionName=" + getMalfunctionName() + ", urgencyStr=" + getUrgencyStr() + ")";
|
}
|
|
public String getCode() {
|
return this.code;
|
}
|
|
public String getRepairMaintainTable() {
|
return this.repairMaintainTable;
|
}
|
|
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;
|
}
|
|
public String getUrgencyStr() {
|
return this.urgencyStr;
|
}
|
}
|