package com.qianwen.smartman.modules.notify.dto;
|
|
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/notify/dto/MaintainOverdueDTO.class */
|
public class MaintainOverdueDTO {
|
private String code;
|
private String day;
|
private String now;
|
private String maintains;
|
|
public void setCode(final String code) {
|
this.code = code;
|
}
|
|
public void setDay(final String day) {
|
this.day = day;
|
}
|
|
public void setNow(final String now) {
|
this.now = now;
|
}
|
|
public void setMaintains(final String maintains) {
|
this.maintains = maintains;
|
}
|
|
public boolean equals(final Object o) {
|
if (o == this) {
|
return true;
|
}
|
if (o instanceof MaintainOverdueDTO) {
|
MaintainOverdueDTO other = (MaintainOverdueDTO) 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$day = getDay();
|
Object other$day = other.getDay();
|
if (this$day == null) {
|
if (other$day != null) {
|
return false;
|
}
|
} else if (!this$day.equals(other$day)) {
|
return false;
|
}
|
Object this$now = getNow();
|
Object other$now = other.getNow();
|
if (this$now == null) {
|
if (other$now != null) {
|
return false;
|
}
|
} else if (!this$now.equals(other$now)) {
|
return false;
|
}
|
Object this$maintains = getMaintains();
|
Object other$maintains = other.getMaintains();
|
return this$maintains == null ? other$maintains == null : this$maintains.equals(other$maintains);
|
}
|
return false;
|
}
|
return false;
|
}
|
|
protected boolean canEqual(final Object other) {
|
return other instanceof MaintainOverdueDTO;
|
}
|
|
public int hashCode() {
|
Object $code = getCode();
|
int result = (1 * 59) + ($code == null ? 43 : $code.hashCode());
|
Object $day = getDay();
|
int result2 = (result * 59) + ($day == null ? 43 : $day.hashCode());
|
Object $now = getNow();
|
int result3 = (result2 * 59) + ($now == null ? 43 : $now.hashCode());
|
Object $maintains = getMaintains();
|
return (result3 * 59) + ($maintains == null ? 43 : $maintains.hashCode());
|
}
|
|
public String toString() {
|
return "MaintainOverdueDTO(code=" + getCode() + ", day=" + getDay() + ", now=" + getNow() + ", maintains=" + getMaintains() + ")";
|
}
|
|
public String getCode() {
|
return this.code;
|
}
|
|
public String getDay() {
|
return this.day;
|
}
|
|
public String getNow() {
|
return this.now;
|
}
|
|
public String getMaintains() {
|
return this.maintains;
|
}
|
}
|