yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
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;
    }
}