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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
package com.qianwen.smartman.modules.coproduction.vo;
 
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/coproduction/vo/PlanSubmitVO.class */
public class PlanSubmitVO {
    @ApiModelProperty("id")
    private Long id;
    @ApiModelProperty("计划类型id")
    private Long typeId;
    @ApiModelProperty("计划编号")
    private String code;
    @ApiModelProperty("订单编号")
    private String indentCode;
    @ApiModelProperty("计划类别:1 产品计划 2 来料计划")
    private Integer category;
    @ApiModelProperty("所属产品id")
    private Long productId;
    @ApiModelProperty("所属产品编码")
    private String productCode;
    @ApiModelProperty("所属产品名称")
    private String productName;
    @ApiModelProperty("产品bom主键")
    private Long bomId;
    @ApiModelProperty("所属bom版本id")
    private String bomVersion;
    @ApiModelProperty("所属产品工艺id")
    private Long craftId;
    @ApiModelProperty("所属产品工艺名称")
    private String craftName;
    @ApiModelProperty("所属工艺版本id")
    private Long craftVersion;
    @ApiModelProperty("所属工艺版本名称")
    private String craftVersionName;
    @ApiModelProperty("计划数量")
    private Integer planNum;
    @ApiModelProperty("计划开始时间")
    private Date planStartTime;
    @ApiModelProperty("计划结束时间")
    private Date planEndTime;
    @ApiModelProperty("规格型号")
    private String standardModel;
    @ApiModelProperty("扩展字段 json格式")
    private String extendField;
 
    public void setId(final Long id) {
        this.id = id;
    }
 
    public void setTypeId(final Long typeId) {
        this.typeId = typeId;
    }
 
    public void setCode(final String code) {
        this.code = code;
    }
 
    public void setIndentCode(final String indentCode) {
        this.indentCode = indentCode;
    }
 
    public void setCategory(final Integer category) {
        this.category = category;
    }
 
    public void setProductId(final Long productId) {
        this.productId = productId;
    }
 
    public void setProductCode(final String productCode) {
        this.productCode = productCode;
    }
 
    public void setProductName(final String productName) {
        this.productName = productName;
    }
 
    public void setBomId(final Long bomId) {
        this.bomId = bomId;
    }
 
    public void setBomVersion(final String bomVersion) {
        this.bomVersion = bomVersion;
    }
 
    public void setCraftId(final Long craftId) {
        this.craftId = craftId;
    }
 
    public void setCraftName(final String craftName) {
        this.craftName = craftName;
    }
 
    public void setCraftVersion(final Long craftVersion) {
        this.craftVersion = craftVersion;
    }
 
    public void setCraftVersionName(final String craftVersionName) {
        this.craftVersionName = craftVersionName;
    }
 
    public void setPlanNum(final Integer planNum) {
        this.planNum = planNum;
    }
 
    public void setPlanStartTime(final Date planStartTime) {
        this.planStartTime = planStartTime;
    }
 
    public void setPlanEndTime(final Date planEndTime) {
        this.planEndTime = planEndTime;
    }
 
    public void setStandardModel(final String standardModel) {
        this.standardModel = standardModel;
    }
 
    public void setExtendField(final String extendField) {
        this.extendField = extendField;
    }
 
    public boolean equals(final Object o) {
        if (o == this) {
            return true;
        }
        if (o instanceof PlanSubmitVO) {
            PlanSubmitVO other = (PlanSubmitVO) o;
            if (other.canEqual(this)) {
                Object this$id = getId();
                Object other$id = other.getId();
                if (this$id == null) {
                    if (other$id != null) {
                        return false;
                    }
                } else if (!this$id.equals(other$id)) {
                    return false;
                }
                Object this$typeId = getTypeId();
                Object other$typeId = other.getTypeId();
                if (this$typeId == null) {
                    if (other$typeId != null) {
                        return false;
                    }
                } else if (!this$typeId.equals(other$typeId)) {
                    return false;
                }
                Object this$category = getCategory();
                Object other$category = other.getCategory();
                if (this$category == null) {
                    if (other$category != null) {
                        return false;
                    }
                } else if (!this$category.equals(other$category)) {
                    return false;
                }
                Object this$productId = getProductId();
                Object other$productId = other.getProductId();
                if (this$productId == null) {
                    if (other$productId != null) {
                        return false;
                    }
                } else if (!this$productId.equals(other$productId)) {
                    return false;
                }
                Object this$bomId = getBomId();
                Object other$bomId = other.getBomId();
                if (this$bomId == null) {
                    if (other$bomId != null) {
                        return false;
                    }
                } else if (!this$bomId.equals(other$bomId)) {
                    return false;
                }
                Object this$craftId = getCraftId();
                Object other$craftId = other.getCraftId();
                if (this$craftId == null) {
                    if (other$craftId != null) {
                        return false;
                    }
                } else if (!this$craftId.equals(other$craftId)) {
                    return false;
                }
                Object this$craftVersion = getCraftVersion();
                Object other$craftVersion = other.getCraftVersion();
                if (this$craftVersion == null) {
                    if (other$craftVersion != null) {
                        return false;
                    }
                } else if (!this$craftVersion.equals(other$craftVersion)) {
                    return false;
                }
                Object this$planNum = getPlanNum();
                Object other$planNum = other.getPlanNum();
                if (this$planNum == null) {
                    if (other$planNum != null) {
                        return false;
                    }
                } else if (!this$planNum.equals(other$planNum)) {
                    return false;
                }
                Object this$code = getCode();
                Object other$code = other.getCode();
                if (this$code == null) {
                    if (other$code != null) {
                        return false;
                    }
                } else if (!this$code.equals(other$code)) {
                    return false;
                }
                Object this$indentCode = getIndentCode();
                Object other$indentCode = other.getIndentCode();
                if (this$indentCode == null) {
                    if (other$indentCode != null) {
                        return false;
                    }
                } else if (!this$indentCode.equals(other$indentCode)) {
                    return false;
                }
                Object this$productCode = getProductCode();
                Object other$productCode = other.getProductCode();
                if (this$productCode == null) {
                    if (other$productCode != null) {
                        return false;
                    }
                } else if (!this$productCode.equals(other$productCode)) {
                    return false;
                }
                Object this$productName = getProductName();
                Object other$productName = other.getProductName();
                if (this$productName == null) {
                    if (other$productName != null) {
                        return false;
                    }
                } else if (!this$productName.equals(other$productName)) {
                    return false;
                }
                Object this$bomVersion = getBomVersion();
                Object other$bomVersion = other.getBomVersion();
                if (this$bomVersion == null) {
                    if (other$bomVersion != null) {
                        return false;
                    }
                } else if (!this$bomVersion.equals(other$bomVersion)) {
                    return false;
                }
                Object this$craftName = getCraftName();
                Object other$craftName = other.getCraftName();
                if (this$craftName == null) {
                    if (other$craftName != null) {
                        return false;
                    }
                } else if (!this$craftName.equals(other$craftName)) {
                    return false;
                }
                Object this$craftVersionName = getCraftVersionName();
                Object other$craftVersionName = other.getCraftVersionName();
                if (this$craftVersionName == null) {
                    if (other$craftVersionName != null) {
                        return false;
                    }
                } else if (!this$craftVersionName.equals(other$craftVersionName)) {
                    return false;
                }
                Object this$planStartTime = getPlanStartTime();
                Object other$planStartTime = other.getPlanStartTime();
                if (this$planStartTime == null) {
                    if (other$planStartTime != null) {
                        return false;
                    }
                } else if (!this$planStartTime.equals(other$planStartTime)) {
                    return false;
                }
                Object this$planEndTime = getPlanEndTime();
                Object other$planEndTime = other.getPlanEndTime();
                if (this$planEndTime == null) {
                    if (other$planEndTime != null) {
                        return false;
                    }
                } else if (!this$planEndTime.equals(other$planEndTime)) {
                    return false;
                }
                Object this$standardModel = getStandardModel();
                Object other$standardModel = other.getStandardModel();
                if (this$standardModel == null) {
                    if (other$standardModel != null) {
                        return false;
                    }
                } else if (!this$standardModel.equals(other$standardModel)) {
                    return false;
                }
                Object this$extendField = getExtendField();
                Object other$extendField = other.getExtendField();
                return this$extendField == null ? other$extendField == null : this$extendField.equals(other$extendField);
            }
            return false;
        }
        return false;
    }
 
    protected boolean canEqual(final Object other) {
        return other instanceof PlanSubmitVO;
    }
 
    public int hashCode() {
        Object $id = getId();
        int result = (1 * 59) + ($id == null ? 43 : $id.hashCode());
        Object $typeId = getTypeId();
        int result2 = (result * 59) + ($typeId == null ? 43 : $typeId.hashCode());
        Object $category = getCategory();
        int result3 = (result2 * 59) + ($category == null ? 43 : $category.hashCode());
        Object $productId = getProductId();
        int result4 = (result3 * 59) + ($productId == null ? 43 : $productId.hashCode());
        Object $bomId = getBomId();
        int result5 = (result4 * 59) + ($bomId == null ? 43 : $bomId.hashCode());
        Object $craftId = getCraftId();
        int result6 = (result5 * 59) + ($craftId == null ? 43 : $craftId.hashCode());
        Object $craftVersion = getCraftVersion();
        int result7 = (result6 * 59) + ($craftVersion == null ? 43 : $craftVersion.hashCode());
        Object $planNum = getPlanNum();
        int result8 = (result7 * 59) + ($planNum == null ? 43 : $planNum.hashCode());
        Object $code = getCode();
        int result9 = (result8 * 59) + ($code == null ? 43 : $code.hashCode());
        Object $indentCode = getIndentCode();
        int result10 = (result9 * 59) + ($indentCode == null ? 43 : $indentCode.hashCode());
        Object $productCode = getProductCode();
        int result11 = (result10 * 59) + ($productCode == null ? 43 : $productCode.hashCode());
        Object $productName = getProductName();
        int result12 = (result11 * 59) + ($productName == null ? 43 : $productName.hashCode());
        Object $bomVersion = getBomVersion();
        int result13 = (result12 * 59) + ($bomVersion == null ? 43 : $bomVersion.hashCode());
        Object $craftName = getCraftName();
        int result14 = (result13 * 59) + ($craftName == null ? 43 : $craftName.hashCode());
        Object $craftVersionName = getCraftVersionName();
        int result15 = (result14 * 59) + ($craftVersionName == null ? 43 : $craftVersionName.hashCode());
        Object $planStartTime = getPlanStartTime();
        int result16 = (result15 * 59) + ($planStartTime == null ? 43 : $planStartTime.hashCode());
        Object $planEndTime = getPlanEndTime();
        int result17 = (result16 * 59) + ($planEndTime == null ? 43 : $planEndTime.hashCode());
        Object $standardModel = getStandardModel();
        int result18 = (result17 * 59) + ($standardModel == null ? 43 : $standardModel.hashCode());
        Object $extendField = getExtendField();
        return (result18 * 59) + ($extendField == null ? 43 : $extendField.hashCode());
    }
 
    public String toString() {
        return "PlanSubmitVO(id=" + getId() + ", typeId=" + getTypeId() + ", code=" + getCode() + ", indentCode=" + getIndentCode() + ", category=" + getCategory() + ", productId=" + getProductId() + ", productCode=" + getProductCode() + ", productName=" + getProductName() + ", bomId=" + getBomId() + ", bomVersion=" + getBomVersion() + ", craftId=" + getCraftId() + ", craftName=" + getCraftName() + ", craftVersion=" + getCraftVersion() + ", craftVersionName=" + getCraftVersionName() + ", planNum=" + getPlanNum() + ", planStartTime=" + getPlanStartTime() + ", planEndTime=" + getPlanEndTime() + ", standardModel=" + getStandardModel() + ", extendField=" + getExtendField() + ")";
    }
 
    public Long getId() {
        return this.id;
    }
 
    public Long getTypeId() {
        return this.typeId;
    }
 
    public String getCode() {
        return this.code;
    }
 
    public String getIndentCode() {
        return this.indentCode;
    }
 
    public Integer getCategory() {
        return this.category;
    }
 
    public Long getProductId() {
        return this.productId;
    }
 
    public String getProductCode() {
        return this.productCode;
    }
 
    public String getProductName() {
        return this.productName;
    }
 
    public Long getBomId() {
        return this.bomId;
    }
 
    public String getBomVersion() {
        return this.bomVersion;
    }
 
    public Long getCraftId() {
        return this.craftId;
    }
 
    public String getCraftName() {
        return this.craftName;
    }
 
    public Long getCraftVersion() {
        return this.craftVersion;
    }
 
    public String getCraftVersionName() {
        return this.craftVersionName;
    }
 
    public Integer getPlanNum() {
        return this.planNum;
    }
 
    public Date getPlanStartTime() {
        return this.planStartTime;
    }
 
    public Date getPlanEndTime() {
        return this.planEndTime;
    }
 
    public String getStandardModel() {
        return this.standardModel;
    }
 
    public String getExtendField() {
        return this.extendField;
    }
}