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