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
package com.qianwen.smartman.modules.cps.excel;
 
import com.alibaba.excel.annotation.ExcelIgnore;
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(20)
@ContentRowHeight(18)
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/excel/TrayStorageImport.class */
public class TrayStorageImport implements Serializable {
    private static final long serialVersionUID = -3465997906463234396L;
    @ExcelProperty({"库区编号"})
    private String areaCode;
    @ExcelProperty({"库区名称"})
    private String areaName;
    @ExcelProperty({"库位编号"})
    private String locationCode;
    @ExcelProperty({"库位名称"})
    private String locationName;
    @ExcelProperty({"托盘编号"})
    private String trayCode;
    @ExcelProperty({"托盘名称"})
    private String trayName;
    @ExcelIgnore
    private String failReason;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/excel/TrayStorageImport$TrayStorageImportBuilder.class */
    public static class TrayStorageImportBuilder {
        private String areaCode;
        private String areaName;
        private String locationCode;
        private String locationName;
        private String trayCode;
        private String trayName;
        private String failReason;
 
        TrayStorageImportBuilder() {
        }
 
        public TrayStorageImportBuilder areaCode(final String areaCode) {
            this.areaCode = areaCode;
            return this;
        }
 
        public TrayStorageImportBuilder areaName(final String areaName) {
            this.areaName = areaName;
            return this;
        }
 
        public TrayStorageImportBuilder locationCode(final String locationCode) {
            this.locationCode = locationCode;
            return this;
        }
 
        public TrayStorageImportBuilder locationName(final String locationName) {
            this.locationName = locationName;
            return this;
        }
 
        public TrayStorageImportBuilder trayCode(final String trayCode) {
            this.trayCode = trayCode;
            return this;
        }
 
        public TrayStorageImportBuilder trayName(final String trayName) {
            this.trayName = trayName;
            return this;
        }
 
        public TrayStorageImportBuilder failReason(final String failReason) {
            this.failReason = failReason;
            return this;
        }
 
        public TrayStorageImport build() {
            return new TrayStorageImport(this.areaCode, this.areaName, this.locationCode, this.locationName, this.trayCode, this.trayName, this.failReason);
        }
 
        public String toString() {
            return "TrayStorageImport.TrayStorageImportBuilder(areaCode=" + this.areaCode + ", areaName=" + this.areaName + ", locationCode=" + this.locationCode + ", locationName=" + this.locationName + ", trayCode=" + this.trayCode + ", trayName=" + this.trayName + ", failReason=" + this.failReason + ")";
        }
    }
 
    public void setAreaCode(final String areaCode) {
        this.areaCode = areaCode;
    }
 
    public void setAreaName(final String areaName) {
        this.areaName = areaName;
    }
 
    public void setLocationCode(final String locationCode) {
        this.locationCode = locationCode;
    }
 
    public void setLocationName(final String locationName) {
        this.locationName = locationName;
    }
 
    public void setTrayCode(final String trayCode) {
        this.trayCode = trayCode;
    }
 
    public void setTrayName(final String trayName) {
        this.trayName = trayName;
    }
 
    public void setFailReason(final String failReason) {
        this.failReason = failReason;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof TrayStorageImport) {
            TrayStorageImport other = (TrayStorageImport) o;
            if (other.canEqual(this)) {
                Object this$areaCode = getAreaCode();
                Object other$areaCode = other.getAreaCode();
                if (this$areaCode == null) {
                    if (other$areaCode != null) {
                        return false;
                    }
                } else if (!this$areaCode.equals(other$areaCode)) {
                    return false;
                }
                Object this$areaName = getAreaName();
                Object other$areaName = other.getAreaName();
                if (this$areaName == null) {
                    if (other$areaName != null) {
                        return false;
                    }
                } else if (!this$areaName.equals(other$areaName)) {
                    return false;
                }
                Object this$locationCode = getLocationCode();
                Object other$locationCode = other.getLocationCode();
                if (this$locationCode == null) {
                    if (other$locationCode != null) {
                        return false;
                    }
                } else if (!this$locationCode.equals(other$locationCode)) {
                    return false;
                }
                Object this$locationName = getLocationName();
                Object other$locationName = other.getLocationName();
                if (this$locationName == null) {
                    if (other$locationName != null) {
                        return false;
                    }
                } else if (!this$locationName.equals(other$locationName)) {
                    return false;
                }
                Object this$trayCode = getTrayCode();
                Object other$trayCode = other.getTrayCode();
                if (this$trayCode == null) {
                    if (other$trayCode != null) {
                        return false;
                    }
                } else if (!this$trayCode.equals(other$trayCode)) {
                    return false;
                }
                Object this$trayName = getTrayName();
                Object other$trayName = other.getTrayName();
                if (this$trayName == null) {
                    if (other$trayName != null) {
                        return false;
                    }
                } else if (!this$trayName.equals(other$trayName)) {
                    return false;
                }
                Object this$failReason = getFailReason();
                Object other$failReason = other.getFailReason();
                return this$failReason == null ? other$failReason == null : this$failReason.equals(other$failReason);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof TrayStorageImport;
    }
 
    public int hashCode() {
        Object $areaCode = getAreaCode();
        int result = (1 * 59) + ($areaCode == null ? 43 : $areaCode.hashCode());
        Object $areaName = getAreaName();
        int result2 = (result * 59) + ($areaName == null ? 43 : $areaName.hashCode());
        Object $locationCode = getLocationCode();
        int result3 = (result2 * 59) + ($locationCode == null ? 43 : $locationCode.hashCode());
        Object $locationName = getLocationName();
        int result4 = (result3 * 59) + ($locationName == null ? 43 : $locationName.hashCode());
        Object $trayCode = getTrayCode();
        int result5 = (result4 * 59) + ($trayCode == null ? 43 : $trayCode.hashCode());
        Object $trayName = getTrayName();
        int result6 = (result5 * 59) + ($trayName == null ? 43 : $trayName.hashCode());
        Object $failReason = getFailReason();
        return (result6 * 59) + ($failReason == null ? 43 : $failReason.hashCode());
    }
 
    public String toString() {
        return "TrayStorageImport(areaCode=" + getAreaCode() + ", areaName=" + getAreaName() + ", locationCode=" + getLocationCode() + ", locationName=" + getLocationName() + ", trayCode=" + getTrayCode() + ", trayName=" + getTrayName() + ", failReason=" + getFailReason() + ")";
    }
 
    public static TrayStorageImportBuilder builder() {
        return new TrayStorageImportBuilder();
    }
 
    public TrayStorageImport() {
    }
 
    public TrayStorageImport(final String areaCode, final String areaName, final String locationCode, final String locationName, final String trayCode, final String trayName, final String failReason) {
        this.areaCode = areaCode;
        this.areaName = areaName;
        this.locationCode = locationCode;
        this.locationName = locationName;
        this.trayCode = trayCode;
        this.trayName = trayName;
        this.failReason = failReason;
    }
 
    public String getAreaCode() {
        return this.areaCode;
    }
 
    public String getAreaName() {
        return this.areaName;
    }
 
    public String getLocationCode() {
        return this.locationCode;
    }
 
    public String getLocationName() {
        return this.locationName;
    }
 
    public String getTrayCode() {
        return this.trayCode;
    }
 
    public String getTrayName() {
        return this.trayName;
    }
 
    public String getFailReason() {
        return this.failReason;
    }
}