春风项目四线(合箱线、总装线)
wujian
2024-03-22 9e6d86cfea30f99668cde150b49abae780239a55
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
package com.jcdm.main.bs.orderScheduling.domain;
 
import com.alibaba.excel.annotation.ExcelIgnore;
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.HeadFontStyle;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.jcdm.common.annotation.Excel;
import com.jcdm.common.core.domain.BaseEntity;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.time.LocalDateTime;
import java.util.Date;
import java.util.List;
 
/**
 * 订单排产对象 bs_order_scheduling
 * 
 * @author jiang
 * @date 2024-01-13
 */
@Data
@ExcelIgnoreUnannotated
@ColumnWidth(16)
@HeadRowHeight(14)
@HeadFontStyle(fontHeightInPoints = 11)
public class BsOrderScheduling extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** ID */
    private Long id;
 
    /** 订单编号 */
    @Excel(name = "订单编号")
    @ExcelProperty(value = "订单编号", index = 0)
    private String orderNo;
 
    /** 发动机号 */
    @Excel(name = "箱体编码")
    @ExcelProperty(value = "箱体编码", index = 1)
    private String engineNo;
 
    @TableField(exist = false)
    @ExcelIgnore
    private List<String> engineNoList;
 
    @TableField(exist = false)
    @ExcelIgnore
    private List<String> engineNoListExcel;
 
 
    /** 产品类型 */
    @Excel(name = "产品类型")
    private String productType;
 
    @ExcelProperty(value = "产品类型", index = 2)
    private String productTypeString;
 
    /** 机型 */
    @Excel(name = "机型")
    @ExcelProperty(value = "机型", index = 3)
    private String model;
 
    /** 生产状态 */
    @Excel(name = "生产状态")
    private String productionStatus;
 
    @ExcelProperty(value = "生产状态", index = 4)
    private String productionStatusString;
 
    /** 工时 */
    @Excel(name = "工时")
    @ExcelProperty(value = "工时", index = 5)
    private String workingHours;
 
    /** 当前工位 */
    @Excel(name = "当前工位")
    @ExcelProperty(value = "当前工位", index = 6)
    private String currentWorkstation;
 
    /** 质量状态 */
    @Excel(name = "质量状态")
    @ExcelProperty(value = "质量状态", index = 7)
    private String qualityStatus;
 
    /** 是否打印 */
    @Excel(name = "是否打印")
    private String whetherOrPrint;
 
    /** 10报工 */
    @Excel(name = "10报工")
    @ExcelIgnore
    private String report10;
 
    /** 20报工 */
    @Excel(name = "20报工")
    @ExcelIgnore
    private String report20;
 
    /** 合箱上线 */
    @Excel(name = "合箱上线")
    @ExcelIgnore
    private String combinedBoxTime;
 
    /** 总装下线 */
    @Excel(name = "总装下线")
    @ExcelIgnore
    private String finalAssemblyTime;
 
    /** 操作人 */
    @Excel(name = "操作人")
    @ExcelProperty(value = "操作人", index = 14)
    private String operator;
 
    /** 操作时间 */
    @Excel(name = "操作时间")
    @ExcelProperty(value = "操作时间", index = 15)
    private String operateTime;
 
    /** 状态 */
    @Excel(name = "状态")
    @ExcelIgnore
    private String status;
 
    /** 预留字段1 */
    @Excel(name = "预留字段1")
    @ExcelIgnore
    private String spareField1;
 
    /** 预留字段2 */
    @Excel(name = "预留字段2")
    @ExcelIgnore
    private String spareField2;
 
    /** 预留字段3 */
    @Excel(name = "预留字段3")
    @ExcelIgnore
    private String spareField3;
 
    /** 预留字段4 */
    @Excel(name = "预留字段4")
    @ExcelIgnore
    private String spareField4;
 
    /** 创建用户 */
    @Excel(name = "创建用户")
    @ExcelIgnore
    private String createUser;
 
    /** 更改用户 */
    @Excel(name = "更改用户")
    @ExcelIgnore
    private String updateUser;
 
    /** 备注 */
    @Excel(name = "备注")
    @ExcelIgnore
    private String remarks;
 
    /** CVT报工 */
    @Excel(name = "CVT报工")
    @ExcelIgnore
    private String report30;
 
    @ExcelIgnore
    private String[] dateConditions;
 
    @ExcelIgnore
    private String startTime;
 
    @ExcelIgnore
    private String endTime;
 
    /** 合箱上线时间 */
    @Excel(name = "合箱上线时间")
    @ExcelProperty(value = "合箱上线时间", index = 8)
    @com.alibaba.excel.annotation.format.DateTimeFormat("yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date boxClosingOnlineTime;
 
    /** 合箱下线时间 */
    @Excel(name = "合箱下线时间")
    @ExcelProperty(value = "合箱下线时间", index = 9)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date closingBoxOfflineTime;
 
    /** 总装上线时间 */
    @Excel(name = "总装上线时间")
    @ExcelProperty(value = "总装上线时间", index =10)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date finalAssemblyLaunchTime;
 
    /** 总装下线时间 */
    @Excel(name = "总装下线时间")
    @ExcelProperty(value = "总装下线时间", index = 11)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date finalAssemblyOfflineTime;
 
    /** CVT上线时间 */
    @Excel(name = "CVT上线时间")
    @ExcelProperty(value = "CVT上线时间", index = 12)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date cvtLaunchTime;
 
    /** CVT下线时间 */
    @Excel(name = "CVT下线时间")
    @ExcelProperty(value = "CVT下线时间", index = 13)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date cvtOfflineTime;
 
    @TableField(exist = false)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ExcelIgnore
    private LocalDateTime startQuery;
 
    @TableField(exist = false)
    @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    @ExcelIgnore
    private LocalDateTime endQuery;
 
    @TableField(exist = false)
    @ExcelIgnore
    private String queryField;
 
    public Date getBoxClosingOnlineTime() {
        return boxClosingOnlineTime;
    }
 
    public void setBoxClosingOnlineTime(Date boxClosingOnlineTime) {
        this.boxClosingOnlineTime = boxClosingOnlineTime;
    }
 
    public Date getClosingBoxOfflineTime() {
        return closingBoxOfflineTime;
    }
 
    public void setClosingBoxOfflineTime(Date closingBoxOfflineTime) {
        this.closingBoxOfflineTime = closingBoxOfflineTime;
    }
 
    public Date getFinalAssemblyLaunchTime() {
        return finalAssemblyLaunchTime;
    }
 
    public void setFinalAssemblyLaunchTime(Date finalAssemblyLaunchTime) {
        this.finalAssemblyLaunchTime = finalAssemblyLaunchTime;
    }
 
    public Date getFinalAssemblyOfflineTime() {
        return finalAssemblyOfflineTime;
    }
 
    public void setFinalAssemblyOfflineTime(Date finalAssemblyOfflineTime) {
        this.finalAssemblyOfflineTime = finalAssemblyOfflineTime;
    }
 
    public Date getCvtLaunchTime() {
        return cvtLaunchTime;
    }
 
    public void setCvtLaunchTime(Date cvtLaunchTime) {
        this.cvtLaunchTime = cvtLaunchTime;
    }
 
    public Date getCvtOfflineTime() {
        return cvtOfflineTime;
    }
 
    public void setCvtOfflineTime(Date cvtOfflineTime) {
        this.cvtOfflineTime = cvtOfflineTime;
    }
 
    public String[] getDateConditions() {
        return dateConditions;
    }
 
    public void setDateConditions(String[] dateConditions) {
        this.dateConditions = dateConditions;
    }
 
    public String getStartTime() {
        return startTime;
    }
 
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
 
    public String getEndTime() {
        return endTime;
    }
 
    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }
 
    public String getReport30() {
        return report30;
    }
 
    public void setReport30(String report30) {
        this.report30 = report30;
    }
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId() 
    {
        return id;
    }
    public void setOrderNo(String orderNo) 
    {
        this.orderNo = orderNo;
    }
 
    public String getOrderNo() 
    {
        return orderNo;
    }
    public void setEngineNo(String engineNo) 
    {
        this.engineNo = engineNo;
    }
 
    public String getEngineNo() 
    {
        return engineNo;
    }
    public void setProductType(String productType) 
    {
        this.productType = productType;
    }
 
    public String getProductType() 
    {
        return productType;
    }
    public void setModel(String model) 
    {
        this.model = model;
    }
 
    public String getModel() 
    {
        return model;
    }
    public void setProductionStatus(String productionStatus) 
    {
        this.productionStatus = productionStatus;
    }
 
    public String getProductionStatus() 
    {
        return productionStatus;
    }
    public void setWorkingHours(String workingHours) 
    {
        this.workingHours = workingHours;
    }
 
    public String getWorkingHours() 
    {
        return workingHours;
    }
    public void setCurrentWorkstation(String currentWorkstation) 
    {
        this.currentWorkstation = currentWorkstation;
    }
 
    public String getCurrentWorkstation() 
    {
        return currentWorkstation;
    }
    public void setQualityStatus(String qualityStatus) 
    {
        this.qualityStatus = qualityStatus;
    }
 
    public String getQualityStatus() 
    {
        return qualityStatus;
    }
    public void setWhetherOrPrint(String whetherOrPrint) 
    {
        this.whetherOrPrint = whetherOrPrint;
    }
 
    public String getWhetherOrPrint() 
    {
        return whetherOrPrint;
    }
    public void setReport10(String report10) 
    {
        this.report10 = report10;
    }
 
    public String getReport10() 
    {
        return report10;
    }
    public void setReport20(String report20) 
    {
        this.report20 = report20;
    }
 
    public String getReport20() 
    {
        return report20;
    }
    public void setCombinedBoxTime(String combinedBoxTime) 
    {
        this.combinedBoxTime = combinedBoxTime;
    }
 
    public String getCombinedBoxTime() 
    {
        return combinedBoxTime;
    }
    public void setFinalAssemblyTime(String finalAssemblyTime) 
    {
        this.finalAssemblyTime = finalAssemblyTime;
    }
 
    public String getFinalAssemblyTime() 
    {
        return finalAssemblyTime;
    }
    public void setOperator(String operator) 
    {
        this.operator = operator;
    }
 
    public String getOperator() 
    {
        return operator;
    }
    public void setOperateTime(String operateTime) 
    {
        this.operateTime = operateTime;
    }
 
    public String getOperateTime() 
    {
        return operateTime;
    }
    public void setStatus(String status) 
    {
        this.status = status;
    }
 
    public String getStatus() 
    {
        return status;
    }
    public void setSpareField1(String spareField1) 
    {
        this.spareField1 = spareField1;
    }
 
    public String getSpareField1() 
    {
        return spareField1;
    }
    public void setSpareField2(String spareField2) 
    {
        this.spareField2 = spareField2;
    }
 
    public String getSpareField2() 
    {
        return spareField2;
    }
    public void setSpareField3(String spareField3) 
    {
        this.spareField3 = spareField3;
    }
 
    public String getSpareField3() 
    {
        return spareField3;
    }
    public void setSpareField4(String spareField4) 
    {
        this.spareField4 = spareField4;
    }
 
    public String getSpareField4() 
    {
        return spareField4;
    }
    public void setCreateUser(String createUser) 
    {
        this.createUser = createUser;
    }
 
    public String getCreateUser() 
    {
        return createUser;
    }
    public void setUpdateUser(String updateUser) 
    {
        this.updateUser = updateUser;
    }
 
    public String getUpdateUser() 
    {
        return updateUser;
    }
    public void setRemarks(String remarks) 
    {
        this.remarks = remarks;
    }
 
    public String getRemarks() 
    {
        return remarks;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("orderNo", getOrderNo())
            .append("engineNo", getEngineNo())
            .append("productType", getProductType())
            .append("model", getModel())
            .append("productionStatus", getProductionStatus())
            .append("workingHours", getWorkingHours())
            .append("currentWorkstation", getCurrentWorkstation())
            .append("qualityStatus", getQualityStatus())
            .append("whetherOrPrint", getWhetherOrPrint())
            .append("report10", getReport10())
            .append("report20", getReport20())
            .append("combinedBoxTime", getCombinedBoxTime())
            .append("finalAssemblyTime", getFinalAssemblyTime())
            .append("operator", getOperator())
            .append("operateTime", getOperateTime())
            .append("status", getStatus())
            .append("spareField1", getSpareField1())
            .append("spareField2", getSpareField2())
            .append("spareField3", getSpareField3())
            .append("spareField4", getSpareField4())
            .append("createUser", getCreateUser())
            .append("createTime", getCreateTime())
            .append("updateUser", getUpdateUser())
            .append("updateTime", getUpdateTime())
            .append("remarks", getRemarks())
            .toString();
    }
}