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
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.tpm.vo.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;
import com.qianwen.smartman.common.cache.RegionCache;
 
@HeadRowHeight(20)
@ColumnWidth(16)
@ContentRowHeight(18)
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/vo/excel/CheckRecordExcel.class */
public class CheckRecordExcel implements Serializable {
    @ExcelProperty(value = {"点检单号"}, index = 0)
    private String checkCode;
    @ExcelProperty(value = {"机器编号"}, index = 1)
    private String deviceCode;
    @ExcelProperty(value = {"机器名称"}, index = 2)
    private String deviceName;
    @ExcelProperty(value = {"机器类型"}, index = 3)
    private String deviceTypeName;
    @ExcelProperty(value = {"点检时间"}, index = 4)
    private String checkTime;
    @ExcelProperty(value = {"检验人员"}, index = RegionCache.VILLAGE_LEVEL)
    private String checkUserName;
    @ExcelProperty(value = {"检验项目"}, index = 6)
    private String checkProjectName;
    @ExcelProperty(value = {"检验结果"}, index = 7)
    private String checkResult;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/tpm/vo/excel/CheckRecordExcel$CheckRecordExcelBuilder.class */
    public static class CheckRecordExcelBuilder {
        private String checkCode;
        private String deviceCode;
        private String deviceName;
        private String deviceTypeName;
        private String checkTime;
        private String checkUserName;
        private String checkProjectName;
        private String checkResult;
 
        CheckRecordExcelBuilder() {
        }
 
        public CheckRecordExcelBuilder checkCode(final String checkCode) {
            this.checkCode = checkCode;
            return this;
        }
 
        public CheckRecordExcelBuilder deviceCode(final String deviceCode) {
            this.deviceCode = deviceCode;
            return this;
        }
 
        public CheckRecordExcelBuilder deviceName(final String deviceName) {
            this.deviceName = deviceName;
            return this;
        }
 
        public CheckRecordExcelBuilder deviceTypeName(final String deviceTypeName) {
            this.deviceTypeName = deviceTypeName;
            return this;
        }
 
        public CheckRecordExcelBuilder checkTime(final String checkTime) {
            this.checkTime = checkTime;
            return this;
        }
 
        public CheckRecordExcelBuilder checkUserName(final String checkUserName) {
            this.checkUserName = checkUserName;
            return this;
        }
 
        public CheckRecordExcelBuilder checkProjectName(final String checkProjectName) {
            this.checkProjectName = checkProjectName;
            return this;
        }
 
        public CheckRecordExcelBuilder checkResult(final String checkResult) {
            this.checkResult = checkResult;
            return this;
        }
 
        public CheckRecordExcel build() {
            return new CheckRecordExcel(this.checkCode, this.deviceCode, this.deviceName, this.deviceTypeName, this.checkTime, this.checkUserName, this.checkProjectName, this.checkResult);
        }
 
        public String toString() {
            return "CheckRecordExcel.CheckRecordExcelBuilder(checkCode=" + this.checkCode + ", deviceCode=" + this.deviceCode + ", deviceName=" + this.deviceName + ", deviceTypeName=" + this.deviceTypeName + ", checkTime=" + this.checkTime + ", checkUserName=" + this.checkUserName + ", checkProjectName=" + this.checkProjectName + ", checkResult=" + this.checkResult + ")";
        }
    }
 
    public void setCheckCode(final String checkCode) {
        this.checkCode = checkCode;
    }
 
    public void setDeviceCode(final String deviceCode) {
        this.deviceCode = deviceCode;
    }
 
    public void setDeviceName(final String deviceName) {
        this.deviceName = deviceName;
    }
 
    public void setDeviceTypeName(final String deviceTypeName) {
        this.deviceTypeName = deviceTypeName;
    }
 
    public void setCheckTime(final String checkTime) {
        this.checkTime = checkTime;
    }
 
    public void setCheckUserName(final String checkUserName) {
        this.checkUserName = checkUserName;
    }
 
    public void setCheckProjectName(final String checkProjectName) {
        this.checkProjectName = checkProjectName;
    }
 
    public void setCheckResult(final String checkResult) {
        this.checkResult = checkResult;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof CheckRecordExcel) {
            CheckRecordExcel other = (CheckRecordExcel) o;
            if (other.canEqual(this)) {
                Object this$checkCode = getCheckCode();
                Object other$checkCode = other.getCheckCode();
                if (this$checkCode == null) {
                    if (other$checkCode != null) {
                        return false;
                    }
                } else if (!this$checkCode.equals(other$checkCode)) {
                    return false;
                }
                Object this$deviceCode = getDeviceCode();
                Object other$deviceCode = other.getDeviceCode();
                if (this$deviceCode == null) {
                    if (other$deviceCode != null) {
                        return false;
                    }
                } else if (!this$deviceCode.equals(other$deviceCode)) {
                    return false;
                }
                Object this$deviceName = getDeviceName();
                Object other$deviceName = other.getDeviceName();
                if (this$deviceName == null) {
                    if (other$deviceName != null) {
                        return false;
                    }
                } else if (!this$deviceName.equals(other$deviceName)) {
                    return false;
                }
                Object this$deviceTypeName = getDeviceTypeName();
                Object other$deviceTypeName = other.getDeviceTypeName();
                if (this$deviceTypeName == null) {
                    if (other$deviceTypeName != null) {
                        return false;
                    }
                } else if (!this$deviceTypeName.equals(other$deviceTypeName)) {
                    return false;
                }
                Object this$checkTime = getCheckTime();
                Object other$checkTime = other.getCheckTime();
                if (this$checkTime == null) {
                    if (other$checkTime != null) {
                        return false;
                    }
                } else if (!this$checkTime.equals(other$checkTime)) {
                    return false;
                }
                Object this$checkUserName = getCheckUserName();
                Object other$checkUserName = other.getCheckUserName();
                if (this$checkUserName == null) {
                    if (other$checkUserName != null) {
                        return false;
                    }
                } else if (!this$checkUserName.equals(other$checkUserName)) {
                    return false;
                }
                Object this$checkProjectName = getCheckProjectName();
                Object other$checkProjectName = other.getCheckProjectName();
                if (this$checkProjectName == null) {
                    if (other$checkProjectName != null) {
                        return false;
                    }
                } else if (!this$checkProjectName.equals(other$checkProjectName)) {
                    return false;
                }
                Object this$checkResult = getCheckResult();
                Object other$checkResult = other.getCheckResult();
                return this$checkResult == null ? other$checkResult == null : this$checkResult.equals(other$checkResult);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof CheckRecordExcel;
    }
 
    public int hashCode() {
        Object $checkCode = getCheckCode();
        int result = (1 * 59) + ($checkCode == null ? 43 : $checkCode.hashCode());
        Object $deviceCode = getDeviceCode();
        int result2 = (result * 59) + ($deviceCode == null ? 43 : $deviceCode.hashCode());
        Object $deviceName = getDeviceName();
        int result3 = (result2 * 59) + ($deviceName == null ? 43 : $deviceName.hashCode());
        Object $deviceTypeName = getDeviceTypeName();
        int result4 = (result3 * 59) + ($deviceTypeName == null ? 43 : $deviceTypeName.hashCode());
        Object $checkTime = getCheckTime();
        int result5 = (result4 * 59) + ($checkTime == null ? 43 : $checkTime.hashCode());
        Object $checkUserName = getCheckUserName();
        int result6 = (result5 * 59) + ($checkUserName == null ? 43 : $checkUserName.hashCode());
        Object $checkProjectName = getCheckProjectName();
        int result7 = (result6 * 59) + ($checkProjectName == null ? 43 : $checkProjectName.hashCode());
        Object $checkResult = getCheckResult();
        return (result7 * 59) + ($checkResult == null ? 43 : $checkResult.hashCode());
    }
 
    public String toString() {
        return "CheckRecordExcel(checkCode=" + getCheckCode() + ", deviceCode=" + getDeviceCode() + ", deviceName=" + getDeviceName() + ", deviceTypeName=" + getDeviceTypeName() + ", checkTime=" + getCheckTime() + ", checkUserName=" + getCheckUserName() + ", checkProjectName=" + getCheckProjectName() + ", checkResult=" + getCheckResult() + ")";
    }
 
    public static CheckRecordExcelBuilder builder() {
        return new CheckRecordExcelBuilder();
    }
 
    public CheckRecordExcel() {
    }
 
    public CheckRecordExcel(final String checkCode, final String deviceCode, final String deviceName, final String deviceTypeName, final String checkTime, final String checkUserName, final String checkProjectName, final String checkResult) {
        this.checkCode = checkCode;
        this.deviceCode = deviceCode;
        this.deviceName = deviceName;
        this.deviceTypeName = deviceTypeName;
        this.checkTime = checkTime;
        this.checkUserName = checkUserName;
        this.checkProjectName = checkProjectName;
        this.checkResult = checkResult;
    }
 
    public String getCheckCode() {
        return this.checkCode;
    }
 
    public String getDeviceCode() {
        return this.deviceCode;
    }
 
    public String getDeviceName() {
        return this.deviceName;
    }
 
    public String getDeviceTypeName() {
        return this.deviceTypeName;
    }
 
    public String getCheckTime() {
        return this.checkTime;
    }
 
    public String getCheckUserName() {
        return this.checkUserName;
    }
 
    public String getCheckProjectName() {
        return this.checkProjectName;
    }
 
    public String getCheckResult() {
        return this.checkResult;
    }
}