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
112
113
114
115
116
117
118
119
120
121
package com.qianwen.smartman.modules.mdc.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/vo/AlarmDataSheetVO.class */
public class AlarmDataSheetVO implements Serializable {
    private static final long serialVersionUID = 2652503648744082444L;
    @ApiModelProperty("报警代码")
    private String alarmCode;
    @ApiModelProperty("报警次数")
    private Integer count;
    @ApiModelProperty("报警信息")
    private String alarmMsg;
    @ApiModelProperty("报警时间")
    private String alarmTime;
 
    public void setAlarmCode(final String alarmCode) {
        this.alarmCode = alarmCode;
    }
 
    public void setCount(final Integer count) {
        this.count = count;
    }
 
    public void setAlarmMsg(final String alarmMsg) {
        this.alarmMsg = alarmMsg;
    }
 
    public void setAlarmTime(final String alarmTime) {
        this.alarmTime = alarmTime;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof AlarmDataSheetVO) {
            AlarmDataSheetVO other = (AlarmDataSheetVO) o;
            if (other.canEqual(this)) {
                Object this$count = getCount();
                Object other$count = other.getCount();
                if (this$count == null) {
                    if (other$count != null) {
                        return false;
                    }
                } else if (!this$count.equals(other$count)) {
                    return false;
                }
                Object this$alarmCode = getAlarmCode();
                Object other$alarmCode = other.getAlarmCode();
                if (this$alarmCode == null) {
                    if (other$alarmCode != null) {
                        return false;
                    }
                } else if (!this$alarmCode.equals(other$alarmCode)) {
                    return false;
                }
                Object this$alarmMsg = getAlarmMsg();
                Object other$alarmMsg = other.getAlarmMsg();
                if (this$alarmMsg == null) {
                    if (other$alarmMsg != null) {
                        return false;
                    }
                } else if (!this$alarmMsg.equals(other$alarmMsg)) {
                    return false;
                }
                Object this$alarmTime = getAlarmTime();
                Object other$alarmTime = other.getAlarmTime();
                return this$alarmTime == null ? other$alarmTime == null : this$alarmTime.equals(other$alarmTime);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof AlarmDataSheetVO;
    }
 
    public int hashCode() {
        Object $count = getCount();
        int result = (1 * 59) + ($count == null ? 43 : $count.hashCode());
        Object $alarmCode = getAlarmCode();
        int result2 = (result * 59) + ($alarmCode == null ? 43 : $alarmCode.hashCode());
        Object $alarmMsg = getAlarmMsg();
        int result3 = (result2 * 59) + ($alarmMsg == null ? 43 : $alarmMsg.hashCode());
        Object $alarmTime = getAlarmTime();
        return (result3 * 59) + ($alarmTime == null ? 43 : $alarmTime.hashCode());
    }
 
    public String toString() {
        return "AlarmDataSheetVO(alarmCode=" + getAlarmCode() + ", count=" + getCount() + ", alarmMsg=" + getAlarmMsg() + ", alarmTime=" + getAlarmTime() + ")";
    }
 
    public AlarmDataSheetVO() {
    }
 
    public AlarmDataSheetVO(final String alarmCode, final Integer count, final String alarmMsg, final String alarmTime) {
        this.alarmCode = alarmCode;
        this.count = count;
        this.alarmMsg = alarmMsg;
        this.alarmTime = alarmTime;
    }
 
    public String getAlarmCode() {
        return this.alarmCode;
    }
 
    public Integer getCount() {
        return this.count;
    }
 
    public String getAlarmMsg() {
        return this.alarmMsg;
    }
 
    public String getAlarmTime() {
        return this.alarmTime;
    }
}