yangys
2024-03-28 23a939ed820ee32f9a4309f9c81b7bab5a566f30
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/TrayFixtureImport.class */
public class TrayFixtureImport implements Serializable {
    private static final long serialVersionUID = -7848165826543471977L;
    @ExcelProperty({"托盘编号"})
    private String trayCode;
    @ExcelProperty({"托盘名称"})
    private String trayName;
    @ExcelProperty({"托盘面编号"})
    private String trayFaceCode;
    @ExcelProperty({"托盘面名称"})
    private String trayFaceName;
    @ExcelProperty({"夹具编号"})
    private String fixtureCode;
    @ExcelProperty({"夹具名称"})
    private String fixtureName;
    @ExcelIgnore
    private String failReason;
 
    /* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/cps/excel/TrayFixtureImport$TrayFixtureImportBuilder.class */
    public static class TrayFixtureImportBuilder {
        private String trayCode;
        private String trayName;
        private String trayFaceCode;
        private String trayFaceName;
        private String fixtureCode;
        private String fixtureName;
        private String failReason;
 
        TrayFixtureImportBuilder() {
        }
 
        public TrayFixtureImportBuilder trayCode(final String trayCode) {
            this.trayCode = trayCode;
            return this;
        }
 
        public TrayFixtureImportBuilder trayName(final String trayName) {
            this.trayName = trayName;
            return this;
        }
 
        public TrayFixtureImportBuilder trayFaceCode(final String trayFaceCode) {
            this.trayFaceCode = trayFaceCode;
            return this;
        }
 
        public TrayFixtureImportBuilder trayFaceName(final String trayFaceName) {
            this.trayFaceName = trayFaceName;
            return this;
        }
 
        public TrayFixtureImportBuilder fixtureCode(final String fixtureCode) {
            this.fixtureCode = fixtureCode;
            return this;
        }
 
        public TrayFixtureImportBuilder fixtureName(final String fixtureName) {
            this.fixtureName = fixtureName;
            return this;
        }
 
        public TrayFixtureImportBuilder failReason(final String failReason) {
            this.failReason = failReason;
            return this;
        }
 
        public TrayFixtureImport build() {
            return new TrayFixtureImport(this.trayCode, this.trayName, this.trayFaceCode, this.trayFaceName, this.fixtureCode, this.fixtureName, this.failReason);
        }
 
        public String toString() {
            return "TrayFixtureImport.TrayFixtureImportBuilder(trayCode=" + this.trayCode + ", trayName=" + this.trayName + ", trayFaceCode=" + this.trayFaceCode + ", trayFaceName=" + this.trayFaceName + ", fixtureCode=" + this.fixtureCode + ", fixtureName=" + this.fixtureName + ", failReason=" + this.failReason + ")";
        }
    }
 
    public void setTrayCode(final String trayCode) {
        this.trayCode = trayCode;
    }
 
    public void setTrayName(final String trayName) {
        this.trayName = trayName;
    }
 
    public void setTrayFaceCode(final String trayFaceCode) {
        this.trayFaceCode = trayFaceCode;
    }
 
    public void setTrayFaceName(final String trayFaceName) {
        this.trayFaceName = trayFaceName;
    }
 
    public void setFixtureCode(final String fixtureCode) {
        this.fixtureCode = fixtureCode;
    }
 
    public void setFixtureName(final String fixtureName) {
        this.fixtureName = fixtureName;
    }
 
    public void setFailReason(final String failReason) {
        this.failReason = failReason;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof TrayFixtureImport) {
            TrayFixtureImport other = (TrayFixtureImport) o;
            if (other.canEqual(this)) {
                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$trayFaceCode = getTrayFaceCode();
                Object other$trayFaceCode = other.getTrayFaceCode();
                if (this$trayFaceCode == null) {
                    if (other$trayFaceCode != null) {
                        return false;
                    }
                } else if (!this$trayFaceCode.equals(other$trayFaceCode)) {
                    return false;
                }
                Object this$trayFaceName = getTrayFaceName();
                Object other$trayFaceName = other.getTrayFaceName();
                if (this$trayFaceName == null) {
                    if (other$trayFaceName != null) {
                        return false;
                    }
                } else if (!this$trayFaceName.equals(other$trayFaceName)) {
                    return false;
                }
                Object this$fixtureCode = getFixtureCode();
                Object other$fixtureCode = other.getFixtureCode();
                if (this$fixtureCode == null) {
                    if (other$fixtureCode != null) {
                        return false;
                    }
                } else if (!this$fixtureCode.equals(other$fixtureCode)) {
                    return false;
                }
                Object this$fixtureName = getFixtureName();
                Object other$fixtureName = other.getFixtureName();
                if (this$fixtureName == null) {
                    if (other$fixtureName != null) {
                        return false;
                    }
                } else if (!this$fixtureName.equals(other$fixtureName)) {
                    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 TrayFixtureImport;
    }
 
    public int hashCode() {
        Object $trayCode = getTrayCode();
        int result = (1 * 59) + ($trayCode == null ? 43 : $trayCode.hashCode());
        Object $trayName = getTrayName();
        int result2 = (result * 59) + ($trayName == null ? 43 : $trayName.hashCode());
        Object $trayFaceCode = getTrayFaceCode();
        int result3 = (result2 * 59) + ($trayFaceCode == null ? 43 : $trayFaceCode.hashCode());
        Object $trayFaceName = getTrayFaceName();
        int result4 = (result3 * 59) + ($trayFaceName == null ? 43 : $trayFaceName.hashCode());
        Object $fixtureCode = getFixtureCode();
        int result5 = (result4 * 59) + ($fixtureCode == null ? 43 : $fixtureCode.hashCode());
        Object $fixtureName = getFixtureName();
        int result6 = (result5 * 59) + ($fixtureName == null ? 43 : $fixtureName.hashCode());
        Object $failReason = getFailReason();
        return (result6 * 59) + ($failReason == null ? 43 : $failReason.hashCode());
    }
 
    public String toString() {
        return "TrayFixtureImport(trayCode=" + getTrayCode() + ", trayName=" + getTrayName() + ", trayFaceCode=" + getTrayFaceCode() + ", trayFaceName=" + getTrayFaceName() + ", fixtureCode=" + getFixtureCode() + ", fixtureName=" + getFixtureName() + ", failReason=" + getFailReason() + ")";
    }
 
    public static TrayFixtureImportBuilder builder() {
        return new TrayFixtureImportBuilder();
    }
 
    public TrayFixtureImport() {
    }
 
    public TrayFixtureImport(final String trayCode, final String trayName, final String trayFaceCode, final String trayFaceName, final String fixtureCode, final String fixtureName, final String failReason) {
        this.trayCode = trayCode;
        this.trayName = trayName;
        this.trayFaceCode = trayFaceCode;
        this.trayFaceName = trayFaceName;
        this.fixtureCode = fixtureCode;
        this.fixtureName = fixtureName;
        this.failReason = failReason;
    }
 
    public String getTrayCode() {
        return this.trayCode;
    }
 
    public String getTrayName() {
        return this.trayName;
    }
 
    public String getTrayFaceCode() {
        return this.trayFaceCode;
    }
 
    public String getTrayFaceName() {
        return this.trayFaceName;
    }
 
    public String getFixtureCode() {
        return this.fixtureCode;
    }
 
    public String getFixtureName() {
        return this.fixtureName;
    }
 
    public String getFailReason() {
        return this.failReason;
    }
}