package com.qianwen.smartman.modules.tpm.vo; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; @ApiModel(description = "保养项目保养项") /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/vo/MaintainStatisticsVO.class */ public class MaintainStatisticsVO { @ApiModelProperty("超期数量") private Integer delayNum; @ApiModelProperty("今日保养数量") private Integer todayNum; @ApiModelProperty("预警保养数量") private Integer warningNum; @ApiModelProperty("待确认数量") private Long recordNum; public void setDelayNum(final Integer delayNum) { this.delayNum = delayNum; } public void setTodayNum(final Integer todayNum) { this.todayNum = todayNum; } public void setWarningNum(final Integer warningNum) { this.warningNum = warningNum; } public void setRecordNum(final Long recordNum) { this.recordNum = recordNum; } public boolean equals(final Object o) { if (o == this) { return true; } if (o instanceof MaintainStatisticsVO) { MaintainStatisticsVO other = (MaintainStatisticsVO) o; if (other.canEqual(this)) { Object this$delayNum = getDelayNum(); Object other$delayNum = other.getDelayNum(); if (this$delayNum == null) { if (other$delayNum != null) { return false; } } else if (!this$delayNum.equals(other$delayNum)) { return false; } Object this$todayNum = getTodayNum(); Object other$todayNum = other.getTodayNum(); if (this$todayNum == null) { if (other$todayNum != null) { return false; } } else if (!this$todayNum.equals(other$todayNum)) { return false; } Object this$warningNum = getWarningNum(); Object other$warningNum = other.getWarningNum(); if (this$warningNum == null) { if (other$warningNum != null) { return false; } } else if (!this$warningNum.equals(other$warningNum)) { return false; } Object this$recordNum = getRecordNum(); Object other$recordNum = other.getRecordNum(); return this$recordNum == null ? other$recordNum == null : this$recordNum.equals(other$recordNum); } return false; } return false; } protected boolean canEqual(final Object other) { return other instanceof MaintainStatisticsVO; } public int hashCode() { Object $delayNum = getDelayNum(); int result = (1 * 59) + ($delayNum == null ? 43 : $delayNum.hashCode()); Object $todayNum = getTodayNum(); int result2 = (result * 59) + ($todayNum == null ? 43 : $todayNum.hashCode()); Object $warningNum = getWarningNum(); int result3 = (result2 * 59) + ($warningNum == null ? 43 : $warningNum.hashCode()); Object $recordNum = getRecordNum(); return (result3 * 59) + ($recordNum == null ? 43 : $recordNum.hashCode()); } public String toString() { return "MaintainStatisticsVO(delayNum=" + getDelayNum() + ", todayNum=" + getTodayNum() + ", warningNum=" + getWarningNum() + ", recordNum=" + getRecordNum() + ")"; } public Integer getDelayNum() { return this.delayNum; } public Integer getTodayNum() { return this.todayNum; } public Integer getWarningNum() { return this.warningNum; } public Long getRecordNum() { return this.recordNum; } }