yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package com.qianwen.smartman.modules.report.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.sql.Timestamp;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/report/vo/DrillWorkstationAlarmByShiftVO.class */
public class DrillWorkstationAlarmByShiftVO implements Serializable {
    private static final long serialVersionUID = -530938150418043787L;
    @ApiModelProperty("时间")
    private Timestamp ts;
    @ApiModelProperty("日")
    private Integer factoryDate;
    @ApiModelProperty("报警代码")
    private String alarmCode;
    @ApiModelProperty("报警信息")
    private String alarmMsg;
    @ApiModelProperty("工位ID")
    private Long workstationId;
    @ApiModelProperty("班次")
    private Integer shiftIndex;
    @ApiModelProperty("班次顺序名")
    private String shiftIndexName;
    @ApiModelProperty("班次名称")
    private String shiftName;
 
    public void setTs(final Timestamp ts) {
        this.ts = ts;
    }
 
    public void setFactoryDate(final Integer factoryDate) {
        this.factoryDate = factoryDate;
    }
 
    public void setAlarmCode(final String alarmCode) {
        this.alarmCode = alarmCode;
    }
 
    public void setAlarmMsg(final String alarmMsg) {
        this.alarmMsg = alarmMsg;
    }
 
    public void setWorkstationId(final Long workstationId) {
        this.workstationId = workstationId;
    }
 
    public void setShiftIndex(final Integer shiftIndex) {
        this.shiftIndex = shiftIndex;
    }
 
    public void setShiftIndexName(final String shiftIndexName) {
        this.shiftIndexName = shiftIndexName;
    }
 
    public void setShiftName(final String shiftName) {
        this.shiftName = shiftName;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof DrillWorkstationAlarmByShiftVO) {
            DrillWorkstationAlarmByShiftVO other = (DrillWorkstationAlarmByShiftVO) o;
            if (other.canEqual(this)) {
                Object this$factoryDate = getFactoryDate();
                Object other$factoryDate = other.getFactoryDate();
                if (this$factoryDate == null) {
                    if (other$factoryDate != null) {
                        return false;
                    }
                } else if (!this$factoryDate.equals(other$factoryDate)) {
                    return false;
                }
                Object this$workstationId = getWorkstationId();
                Object other$workstationId = other.getWorkstationId();
                if (this$workstationId == null) {
                    if (other$workstationId != null) {
                        return false;
                    }
                } else if (!this$workstationId.equals(other$workstationId)) {
                    return false;
                }
                Object this$shiftIndex = getShiftIndex();
                Object other$shiftIndex = other.getShiftIndex();
                if (this$shiftIndex == null) {
                    if (other$shiftIndex != null) {
                        return false;
                    }
                } else if (!this$shiftIndex.equals(other$shiftIndex)) {
                    return false;
                }
                Object this$ts = getTs();
                Object other$ts = other.getTs();
                if (this$ts == null) {
                    if (other$ts != null) {
                        return false;
                    }
                } else if (!this$ts.equals(other$ts)) {
                    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$shiftIndexName = getShiftIndexName();
                Object other$shiftIndexName = other.getShiftIndexName();
                if (this$shiftIndexName == null) {
                    if (other$shiftIndexName != null) {
                        return false;
                    }
                } else if (!this$shiftIndexName.equals(other$shiftIndexName)) {
                    return false;
                }
                Object this$shiftName = getShiftName();
                Object other$shiftName = other.getShiftName();
                return this$shiftName == null ? other$shiftName == null : this$shiftName.equals(other$shiftName);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof DrillWorkstationAlarmByShiftVO;
    }
 
    public int hashCode() {
        Object $factoryDate = getFactoryDate();
        int result = (1 * 59) + ($factoryDate == null ? 43 : $factoryDate.hashCode());
        Object $workstationId = getWorkstationId();
        int result2 = (result * 59) + ($workstationId == null ? 43 : $workstationId.hashCode());
        Object $shiftIndex = getShiftIndex();
        int result3 = (result2 * 59) + ($shiftIndex == null ? 43 : $shiftIndex.hashCode());
        Object $ts = getTs();
        int result4 = (result3 * 59) + ($ts == null ? 43 : $ts.hashCode());
        Object $alarmCode = getAlarmCode();
        int result5 = (result4 * 59) + ($alarmCode == null ? 43 : $alarmCode.hashCode());
        Object $alarmMsg = getAlarmMsg();
        int result6 = (result5 * 59) + ($alarmMsg == null ? 43 : $alarmMsg.hashCode());
        Object $shiftIndexName = getShiftIndexName();
        int result7 = (result6 * 59) + ($shiftIndexName == null ? 43 : $shiftIndexName.hashCode());
        Object $shiftName = getShiftName();
        return (result7 * 59) + ($shiftName == null ? 43 : $shiftName.hashCode());
    }
 
    public String toString() {
        return "DrillWorkstationAlarmByShiftVO(ts=" + getTs() + ", factoryDate=" + getFactoryDate() + ", alarmCode=" + getAlarmCode() + ", alarmMsg=" + getAlarmMsg() + ", workstationId=" + getWorkstationId() + ", shiftIndex=" + getShiftIndex() + ", shiftIndexName=" + getShiftIndexName() + ", shiftName=" + getShiftName() + ")";
    }
 
    public Timestamp getTs() {
        return this.ts;
    }
 
    public Integer getFactoryDate() {
        return this.factoryDate;
    }
 
    public String getAlarmCode() {
        return this.alarmCode;
    }
 
    public String getAlarmMsg() {
        return this.alarmMsg;
    }
 
    public Long getWorkstationId() {
        return this.workstationId;
    }
 
    public Integer getShiftIndex() {
        return this.shiftIndex;
    }
 
    public String getShiftIndexName() {
        return this.shiftIndexName;
    }
 
    public String getShiftName() {
        return this.shiftName;
    }
}