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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
package com.qianwen.smartman.modules.mdc.excel;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentRowHeight;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import java.io.Serializable;
 
@HeadRowHeight(20)
@ColumnWidth(16)
@ContentRowHeight(18)
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/excel/AlarmDataSheetExcel.class */
public class AlarmDataSheetExcel implements Serializable {
    private static final long serialVersionUID = 8916841183037573536L;
    @ExcelProperty({"日期"})
    private String date;
    @ExcelProperty({"工位组"})
    private String workstationGroup;
    @ExcelProperty({"工位编号"})
    private String workstationCode;
    @ExcelProperty({"工位名称"})
    private String workstationName;
    @ExcelProperty({"班次"})
    private String shift;
    @ExcelProperty({"报警代码"})
    private String alarmCode;
    @ExcelProperty({"报警信息"})
    private String alarmMsg;
    @ExcelProperty({"报警次数"})
    private String count;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/mdc/excel/AlarmDataSheetExcel$AlarmDataSheetExcelBuilder.class */
    public static class AlarmDataSheetExcelBuilder {
        private String date;
        private String workstationGroup;
        private String workstationCode;
        private String workstationName;
        private String shift;
        private String alarmCode;
        private String alarmMsg;
        private String count;
 
        AlarmDataSheetExcelBuilder() {
        }
 
        public AlarmDataSheetExcelBuilder date(final String date) {
            this.date = date;
            return this;
        }
 
        public AlarmDataSheetExcelBuilder workstationGroup(final String workstationGroup) {
            this.workstationGroup = workstationGroup;
            return this;
        }
 
        public AlarmDataSheetExcelBuilder workstationCode(final String workstationCode) {
            this.workstationCode = workstationCode;
            return this;
        }
 
        public AlarmDataSheetExcelBuilder workstationName(final String workstationName) {
            this.workstationName = workstationName;
            return this;
        }
 
        public AlarmDataSheetExcelBuilder shift(final String shift) {
            this.shift = shift;
            return this;
        }
 
        public AlarmDataSheetExcelBuilder alarmCode(final String alarmCode) {
            this.alarmCode = alarmCode;
            return this;
        }
 
        public AlarmDataSheetExcelBuilder alarmMsg(final String alarmMsg) {
            this.alarmMsg = alarmMsg;
            return this;
        }
 
        public AlarmDataSheetExcelBuilder count(final String count) {
            this.count = count;
            return this;
        }
 
        public AlarmDataSheetExcel build() {
            return new AlarmDataSheetExcel(this.date, this.workstationGroup, this.workstationCode, this.workstationName, this.shift, this.alarmCode, this.alarmMsg, this.count);
        }
 
        public String toString() {
            return "AlarmDataSheetExcel.AlarmDataSheetExcelBuilder(date=" + this.date + ", workstationGroup=" + this.workstationGroup + ", workstationCode=" + this.workstationCode + ", workstationName=" + this.workstationName + ", shift=" + this.shift + ", alarmCode=" + this.alarmCode + ", alarmMsg=" + this.alarmMsg + ", count=" + this.count + ")";
        }
    }
 
    public void setDate(final String date) {
        this.date = date;
    }
 
    public void setWorkstationGroup(final String workstationGroup) {
        this.workstationGroup = workstationGroup;
    }
 
    public void setWorkstationCode(final String workstationCode) {
        this.workstationCode = workstationCode;
    }
 
    public void setWorkstationName(final String workstationName) {
        this.workstationName = workstationName;
    }
 
    public void setShift(final String shift) {
        this.shift = shift;
    }
 
    public void setAlarmCode(final String alarmCode) {
        this.alarmCode = alarmCode;
    }
 
    public void setAlarmMsg(final String alarmMsg) {
        this.alarmMsg = alarmMsg;
    }
 
    public void setCount(final String count) {
        this.count = count;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof AlarmDataSheetExcel) {
            AlarmDataSheetExcel other = (AlarmDataSheetExcel) o;
            if (other.canEqual(this)) {
                Object this$date = getDate();
                Object other$date = other.getDate();
                if (this$date == null) {
                    if (other$date != null) {
                        return false;
                    }
                } else if (!this$date.equals(other$date)) {
                    return false;
                }
                Object this$workstationGroup = getWorkstationGroup();
                Object other$workstationGroup = other.getWorkstationGroup();
                if (this$workstationGroup == null) {
                    if (other$workstationGroup != null) {
                        return false;
                    }
                } else if (!this$workstationGroup.equals(other$workstationGroup)) {
                    return false;
                }
                Object this$workstationCode = getWorkstationCode();
                Object other$workstationCode = other.getWorkstationCode();
                if (this$workstationCode == null) {
                    if (other$workstationCode != null) {
                        return false;
                    }
                } else if (!this$workstationCode.equals(other$workstationCode)) {
                    return false;
                }
                Object this$workstationName = getWorkstationName();
                Object other$workstationName = other.getWorkstationName();
                if (this$workstationName == null) {
                    if (other$workstationName != null) {
                        return false;
                    }
                } else if (!this$workstationName.equals(other$workstationName)) {
                    return false;
                }
                Object this$shift = getShift();
                Object other$shift = other.getShift();
                if (this$shift == null) {
                    if (other$shift != null) {
                        return false;
                    }
                } else if (!this$shift.equals(other$shift)) {
                    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$count = getCount();
                Object other$count = other.getCount();
                return this$count == null ? other$count == null : this$count.equals(other$count);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof AlarmDataSheetExcel;
    }
 
    public int hashCode() {
        Object $date = getDate();
        int result = (1 * 59) + ($date == null ? 43 : $date.hashCode());
        Object $workstationGroup = getWorkstationGroup();
        int result2 = (result * 59) + ($workstationGroup == null ? 43 : $workstationGroup.hashCode());
        Object $workstationCode = getWorkstationCode();
        int result3 = (result2 * 59) + ($workstationCode == null ? 43 : $workstationCode.hashCode());
        Object $workstationName = getWorkstationName();
        int result4 = (result3 * 59) + ($workstationName == null ? 43 : $workstationName.hashCode());
        Object $shift = getShift();
        int result5 = (result4 * 59) + ($shift == null ? 43 : $shift.hashCode());
        Object $alarmCode = getAlarmCode();
        int result6 = (result5 * 59) + ($alarmCode == null ? 43 : $alarmCode.hashCode());
        Object $alarmMsg = getAlarmMsg();
        int result7 = (result6 * 59) + ($alarmMsg == null ? 43 : $alarmMsg.hashCode());
        Object $count = getCount();
        return (result7 * 59) + ($count == null ? 43 : $count.hashCode());
    }
 
    public String toString() {
        return "AlarmDataSheetExcel(date=" + getDate() + ", workstationGroup=" + getWorkstationGroup() + ", workstationCode=" + getWorkstationCode() + ", workstationName=" + getWorkstationName() + ", shift=" + getShift() + ", alarmCode=" + getAlarmCode() + ", alarmMsg=" + getAlarmMsg() + ", count=" + getCount() + ")";
    }
 
    public static AlarmDataSheetExcelBuilder builder() {
        return new AlarmDataSheetExcelBuilder();
    }
 
    public AlarmDataSheetExcel() {
    }
 
    public AlarmDataSheetExcel(final String date, final String workstationGroup, final String workstationCode, final String workstationName, final String shift, final String alarmCode, final String alarmMsg, final String count) {
        this.date = date;
        this.workstationGroup = workstationGroup;
        this.workstationCode = workstationCode;
        this.workstationName = workstationName;
        this.shift = shift;
        this.alarmCode = alarmCode;
        this.alarmMsg = alarmMsg;
        this.count = count;
    }
 
    public String getDate() {
        return this.date;
    }
 
    public String getWorkstationGroup() {
        return this.workstationGroup;
    }
 
    public String getWorkstationCode() {
        return this.workstationCode;
    }
 
    public String getWorkstationName() {
        return this.workstationName;
    }
 
    public String getShift() {
        return this.shift;
    }
 
    public String getAlarmCode() {
        return this.alarmCode;
    }
 
    public String getAlarmMsg() {
        return this.alarmMsg;
    }
 
    public String getCount() {
        return this.count;
    }
}