自动化立体仓库 - WMS系统
zjj
2025-09-05 30f88b2cd1aec5b1b009def619e90145e9788284
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
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
package com.zy.asrs.entity;
 
import com.core.common.Cools;import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.enums.IdType;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.springframework.format.annotation.DateTimeFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.text.SimpleDateFormat;
import java.util.Date;
import com.baomidou.mybatisplus.annotations.TableField;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import com.baomidou.mybatisplus.annotations.TableName;
import java.io.Serializable;
 
@Data
@TableName("ICMO")
public class ICMO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value= "")
    @TableField("FBrNo")
    private String FBrNo;
 
    @ApiModelProperty(value= "")
    @TableId(value = "FInterID", type = IdType.INPUT)
    @TableField("FInterID")
    private Integer FInterID;
 
    @ApiModelProperty(value= "")
    @TableField("FBillNo")
    private String FBillNo;
 
    @ApiModelProperty(value= "")
    @TableField("FTranType")
    private Short FTranType;
 
    @ApiModelProperty(value= "")
    @TableField("FStatus")
    private Short FStatus;
 
    @ApiModelProperty(value= "")
    @TableField("FMRP")
    private Short FMRP;
 
    @ApiModelProperty(value= "")
    @TableField("FType")
    private Short FType;
 
    @ApiModelProperty(value= "")
    @TableField("FWorkShop")
    private Integer FWorkShop;
 
    @ApiModelProperty(value= "")
    @TableField("FItemID")
    private Integer FItemID;
 
    @ApiModelProperty(value= "")
    @TableField("FQty")
    private Double FQty;
 
    @ApiModelProperty(value= "")
    @TableField("FCommitQty")
    private Double FCommitQty;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FPlanCommitDate")
    private Date FPlanCommitDate;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FPlanFinishDate")
    private Date FPlanFinishDate;
 
    @ApiModelProperty(value= "")
    @TableField("FConveyerID")
    private Integer FConveyerID;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FCommitDate")
    private Date FCommitDate;
 
    @ApiModelProperty(value= "")
    @TableField("FCheckerID")
    private Integer FCheckerID;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FCheckDate")
    private Date FCheckDate;
 
    @ApiModelProperty(value= "")
    @TableField("FRequesterID")
    private Integer FRequesterID;
 
    @ApiModelProperty(value= "")
    @TableField("FBillerID")
    private Integer FBillerID;
 
    @ApiModelProperty(value= "")
    @TableField("FSourceEntryID")
    private Integer FSourceEntryID;
 
    @ApiModelProperty(value= "")
    @TableField("FClosed")
    private Short FClosed;
 
    @ApiModelProperty(value= "")
    @TableField("FNote")
    private String FNote;
 
    @ApiModelProperty(value= "")
    @TableField("FUnitID")
    private Integer FUnitID;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxCommitQty")
    private Double FAuxCommitQty;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxQty")
    private Double FAuxQty;
 
    @ApiModelProperty(value= "")
    @TableField("FOrderInterID")
    private Integer FOrderInterID;
 
    @ApiModelProperty(value= "")
    @TableField("FPPOrderInterID")
    private Integer FPPOrderInterID;
 
    @ApiModelProperty(value= "")
    @TableField("FParentInterID")
    private Integer FParentInterID;
 
    @ApiModelProperty(value= "")
    @TableField("FCancellation")
    private Boolean FCancellation;
 
    @ApiModelProperty(value= "")
    @TableField("FSupplyID")
    private Integer FSupplyID;
 
    @ApiModelProperty(value= "")
    @TableField("FQtyFinish")
    private Double FQtyFinish;
 
    @ApiModelProperty(value= "")
    @TableField("FQtyScrap")
    private Double FQtyScrap;
 
    @ApiModelProperty(value= "")
    @TableField("FQtyForItem")
    private Double FQtyForItem;
 
    @ApiModelProperty(value= "")
    @TableField("FQtyLost")
    private Double FQtyLost;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FPlanIssueDate")
    private Date FPlanIssueDate;
 
    @ApiModelProperty(value= "")
    @TableField("FRoutingID")
    private String FRoutingID;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FStartDate")
    private Date FStartDate;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FFinishDate")
    private Date FFinishDate;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxQtyFinish")
    private Double FAuxQtyFinish;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxQtyScrap")
    private Double FAuxQtyScrap;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxQtyForItem")
    private Double FAuxQtyForItem;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxQtyLost")
    private Double FAuxQtyLost;
 
    @ApiModelProperty(value= "")
    @TableField("FMrpClosed")
    private Integer FMrpClosed;
 
    @ApiModelProperty(value= "")
    @TableField("FBomInterID")
    private Integer FBomInterID;
 
    @ApiModelProperty(value= "")
    @TableField("FQtyPass")
    private Double FQtyPass;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxQtyPass")
    private Double FAuxQtyPass;
 
    @ApiModelProperty(value= "")
    @TableField("FQtyBack")
    private Double FQtyBack;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxQtyBack")
    private Double FAuxQtyBack;
 
    @ApiModelProperty(value= "")
    @TableField("FFinishTime")
    private Double FFinishTime;
 
    @ApiModelProperty(value= "")
    @TableField("FReadyTIme")
    private Double FReadyTIme;
 
    @ApiModelProperty(value= "")
    @TableField("FPowerCutTime")
    private Double FPowerCutTime;
 
    @ApiModelProperty(value= "")
    @TableField("FFixTime")
    private Double FFixTime;
 
    @ApiModelProperty(value= "")
    @TableField("FWaitItemTime")
    private Double FWaitItemTime;
 
    @ApiModelProperty(value= "")
    @TableField("FWaitToolTime")
    private Double FWaitToolTime;
 
    @ApiModelProperty(value= "")
    @TableField("FTaskID")
    private Integer FTaskID;
 
    @ApiModelProperty(value= "")
    @TableField("FWorkTypeID")
    private Integer FWorkTypeID;
 
    @ApiModelProperty(value= "")
    @TableField("FCostObjID")
    private Integer FCostObjID;
 
    @ApiModelProperty(value= "")
    @TableField("FStockQty")
    private Double FStockQty;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxStockQty")
    private Double FAuxStockQty;
 
    @ApiModelProperty(value= "")
    @TableField("FSuspend")
    private Boolean FSuspend;
 
    @ApiModelProperty(value= "")
    @TableField("FProjectNO")
    private Integer FProjectNO;
 
    @ApiModelProperty(value= "")
    @TableField("FProductionLineID")
    private Integer FProductionLineID;
 
    @ApiModelProperty(value= "")
    @TableField("FReleasedQty")
    private Double FReleasedQty;
 
    @ApiModelProperty(value= "")
    @TableField("FReleasedAuxQty")
    private Double FReleasedAuxQty;
 
    @ApiModelProperty(value= "")
    @TableField("FUnScheduledQty")
    private Double FUnScheduledQty;
 
    @ApiModelProperty(value= "")
    @TableField("FUnScheduledAuxQty")
    private Double FUnScheduledAuxQty;
 
    @ApiModelProperty(value= "")
    @TableField("FSubEntryID")
    private Integer FSubEntryID;
 
    @ApiModelProperty(value= "")
    @TableField("FScheduleID")
    private Integer FScheduleID;
 
    @ApiModelProperty(value= "")
    @TableField("FPlanOrderInterID")
    private Integer FPlanOrderInterID;
 
    @ApiModelProperty(value= "")
    @TableField("FProcessPrice")
    private Double FProcessPrice;
 
    @ApiModelProperty(value= "")
    @TableField("FProcessFee")
    private Double FProcessFee;
 
    @ApiModelProperty(value= "")
    @TableField("FGMPBatchNo")
    private String FGMPBatchNo;
 
    @ApiModelProperty(value= "")
    @TableField("FGMPCollectRate")
    private Double FGMPCollectRate;
 
    @ApiModelProperty(value= "")
    @TableField("FGMPItemBalance")
    private Double FGMPItemBalance;
 
    @ApiModelProperty(value= "")
    @TableField("FGMPBulkQty")
    private Double FGMPBulkQty;
 
    @ApiModelProperty(value= "")
    @TableField("FCustID")
    private Integer FCustID;
 
    @ApiModelProperty(value= "")
    @TableField("FMultiCheckLevel1")
    private Integer FMultiCheckLevel1;
 
    @ApiModelProperty(value= "")
    @TableField("FMultiCheckLevel2")
    private Integer FMultiCheckLevel2;
 
    @ApiModelProperty(value= "")
    @TableField("FMultiCheckLevel3")
    private Integer FMultiCheckLevel3;
 
    @ApiModelProperty(value= "")
    @TableField("FMultiCheckLevel4")
    private Integer FMultiCheckLevel4;
 
    @ApiModelProperty(value= "")
    @TableField("FMultiCheckLevel5")
    private Integer FMultiCheckLevel5;
 
    @ApiModelProperty(value= "")
    @TableField("FMultiCheckLevel6")
    private Integer FMultiCheckLevel6;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FMultiCheckDate1")
    private Date FMultiCheckDate1;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FMultiCheckDate2")
    private Date FMultiCheckDate2;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FMultiCheckDate3")
    private Date FMultiCheckDate3;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FMultiCheckDate4")
    private Date FMultiCheckDate4;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FMultiCheckDate5")
    private Date FMultiCheckDate5;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FMultiCheckDate6")
    private Date FMultiCheckDate6;
 
    @ApiModelProperty(value= "")
    @TableField("FCurCheckLevel")
    private Integer FCurCheckLevel;
 
    @ApiModelProperty(value= "")
    @TableField("FMRPLockFlag")
    private Integer FMRPLockFlag;
 
    @ApiModelProperty(value= "")
    @TableField("FHandworkClose")
    private Integer FHandworkClose;
 
    @ApiModelProperty(value= "")
    @TableField("FConfirmerID")
    private Integer FConfirmerID;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FConfirmDate")
    private Date FConfirmDate;
 
    @ApiModelProperty(value= "")
    @TableField("FInHighLimit")
    private Double FInHighLimit;
 
    @ApiModelProperty(value= "")
    @TableField("FInHighLimitQty")
    private Double FInHighLimitQty;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxInHighLimitQty")
    private Double FAuxInHighLimitQty;
 
    @ApiModelProperty(value= "")
    @TableField("FInLowLimit")
    private Double FInLowLimit;
 
    @ApiModelProperty(value= "")
    @TableField("FInLowLimitQty")
    private Double FInLowLimitQty;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxInLowLimitQty")
    private Double FAuxInLowLimitQty;
 
    @ApiModelProperty(value= "")
    @TableField("FChangeTimes")
    private Integer FChangeTimes;
 
    @ApiModelProperty(value= "")
    @TableField("FCheckCommitQty")
    private Double FCheckCommitQty;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxCheckCommitQty")
    private Double FAuxCheckCommitQty;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FCloseDate")
    private Date FCloseDate;
 
    @ApiModelProperty(value= "")
    @TableField("FPlanConfirmed")
    private Integer FPlanConfirmed;
 
    @ApiModelProperty(value= "")
    @TableField("FPlanMode")
    private Integer FPlanMode;
 
    @ApiModelProperty(value= "")
    @TableField("FMTONo")
    private String FMTONo;
 
    @ApiModelProperty(value= "")
    @TableField("FPrintCount")
    private Integer FPrintCount;
 
    @ApiModelProperty(value= "")
    @TableField("FFinClosed")
    private Integer FFinClosed;
 
    @ApiModelProperty(value= "")
    @TableField("FFinCloseer")
    private Integer FFinCloseer;
 
    @ApiModelProperty(value= "")
    @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
    @TableField("FFinClosedate")
    private Date FFinClosedate;
 
    @ApiModelProperty(value= "")
    @TableField("FStockFlag")
    private Integer FStockFlag;
 
    @ApiModelProperty(value= "")
    @TableField("FStartFlag")
    private Integer FStartFlag;
 
    @ApiModelProperty(value= "")
    @TableField("FVchBillNo")
    private String FVchBillNo;
 
    @ApiModelProperty(value= "")
    @TableField("FVchInterID")
    private Integer FVchInterID;
 
    @ApiModelProperty(value= "")
    @TableField("FCardClosed")
    private Integer FCardClosed;
 
    @ApiModelProperty(value= "")
    @TableField("FHRReadyTime")
    private Double FHRReadyTime;
 
    @ApiModelProperty(value= "")
    @TableField("FSourceTranType")
    private Integer FSourceTranType;
 
    @ApiModelProperty(value= "")
    @TableField("FSourceInterId")
    private Integer FSourceInterId;
 
    @ApiModelProperty(value= "")
    @TableField("FSourceBillNo")
    private String FSourceBillNo;
 
    @ApiModelProperty(value= "")
    @TableField("FDiscardStockInQty")
    private Integer FDiscardStockInQty;
 
    @ApiModelProperty(value= "")
    @TableField("FSelDiscardStockInQty")
    private Integer FSelDiscardStockInQty;
 
    @ApiModelProperty(value= "")
    @TableField("FPlanCategory")
    private String FPlanCategory;
 
    @ApiModelProperty(value= "")
    @TableField("FAuxPropID")
    private Integer FAuxPropID;
 
    @ApiModelProperty(value= "")
    @TableField("iz_sync_receive")
    private String izSyncReceive;
 
    @ApiModelProperty(value= "")
    @TableField("iz_print")
    private String izPrint;
 
    @ApiModelProperty(value= "")
    @TableField("iz_sync_receive_return")
    private String izSyncReceiveReturn;
 
    @ApiModelProperty(value= "")
    @TableField("iz_print_return")
    private String izPrintReturn;
 
    public ICMO() {}
 
    public ICMO(String FBrNo,Integer FInterID,String FBillNo,Short FTranType,Short FStatus,Short FMRP,Short FType,Integer FWorkShop,Integer FItemID,Double FQty,Double FCommitQty,Date FPlanCommitDate,Date FPlanFinishDate,Integer FConveyerID,Date FCommitDate,Integer FCheckerID,Date FCheckDate,Integer FRequesterID,Integer FBillerID,Integer FSourceEntryID,Short FClosed,String FNote,Integer FUnitID,Double FAuxCommitQty,Double FAuxQty,Integer FOrderInterID,Integer FPPOrderInterID,Integer FParentInterID,Boolean FCancellation,Integer FSupplyID,Double FQtyFinish,Double FQtyScrap,Double FQtyForItem,Double FQtyLost,Date FPlanIssueDate,String FRoutingID,Date FStartDate,Date FFinishDate,Double FAuxQtyFinish,Double FAuxQtyScrap,Double FAuxQtyForItem,Double FAuxQtyLost,Integer FMrpClosed,Integer FBomInterID,Double FQtyPass,Double FAuxQtyPass,Double FQtyBack,Double FAuxQtyBack,Double FFinishTime,Double FReadyTIme,Double FPowerCutTime,Double FFixTime,Double FWaitItemTime,Double FWaitToolTime,Integer FTaskID,Integer FWorkTypeID,Integer FCostObjID,Double FStockQty,Double FAuxStockQty,Boolean FSuspend,Integer FProjectNO,Integer FProductionLineID,Double FReleasedQty,Double FReleasedAuxQty,Double FUnScheduledQty,Double FUnScheduledAuxQty,Integer FSubEntryID,Integer FScheduleID,Integer FPlanOrderInterID,Double FProcessPrice,Double FProcessFee,String FGMPBatchNo,Double FGMPCollectRate,Double FGMPItemBalance,Double FGMPBulkQty,Integer FCustID,Integer FMultiCheckLevel1,Integer FMultiCheckLevel2,Integer FMultiCheckLevel3,Integer FMultiCheckLevel4,Integer FMultiCheckLevel5,Integer FMultiCheckLevel6,Date FMultiCheckDate1,Date FMultiCheckDate2,Date FMultiCheckDate3,Date FMultiCheckDate4,Date FMultiCheckDate5,Date FMultiCheckDate6,Integer FCurCheckLevel,Integer FMRPLockFlag,Integer FHandworkClose,Integer FConfirmerID,Date FConfirmDate,Double FInHighLimit,Double FInHighLimitQty,Double FAuxInHighLimitQty,Double FInLowLimit,Double FInLowLimitQty,Double FAuxInLowLimitQty,Integer FChangeTimes,Double FCheckCommitQty,Double FAuxCheckCommitQty,Date FCloseDate,Integer FPlanConfirmed,Integer FPlanMode,String FMTONo,Integer FPrintCount,Integer FFinClosed,Integer FFinCloseer,Date FFinClosedate,Integer FStockFlag,Integer FStartFlag,String FVchBillNo,Integer FVchInterID,Integer FCardClosed,Double FHRReadyTime,Integer FSourceTranType,Integer FSourceInterId,String FSourceBillNo,Integer FDiscardStockInQty,Integer FSelDiscardStockInQty,String FPlanCategory,Integer FAuxPropID,String izSyncReceive,String izPrint,String izSyncReceiveReturn,String izPrintReturn) {
        this.FBrNo = FBrNo;
        this.FInterID = FInterID;
        this.FBillNo = FBillNo;
        this.FTranType = FTranType;
        this.FStatus = FStatus;
        this.FMRP = FMRP;
        this.FType = FType;
        this.FWorkShop = FWorkShop;
        this.FItemID = FItemID;
        this.FQty = FQty;
        this.FCommitQty = FCommitQty;
        this.FPlanCommitDate = FPlanCommitDate;
        this.FPlanFinishDate = FPlanFinishDate;
        this.FConveyerID = FConveyerID;
        this.FCommitDate = FCommitDate;
        this.FCheckerID = FCheckerID;
        this.FCheckDate = FCheckDate;
        this.FRequesterID = FRequesterID;
        this.FBillerID = FBillerID;
        this.FSourceEntryID = FSourceEntryID;
        this.FClosed = FClosed;
        this.FNote = FNote;
        this.FUnitID = FUnitID;
        this.FAuxCommitQty = FAuxCommitQty;
        this.FAuxQty = FAuxQty;
        this.FOrderInterID = FOrderInterID;
        this.FPPOrderInterID = FPPOrderInterID;
        this.FParentInterID = FParentInterID;
        this.FCancellation = FCancellation;
        this.FSupplyID = FSupplyID;
        this.FQtyFinish = FQtyFinish;
        this.FQtyScrap = FQtyScrap;
        this.FQtyForItem = FQtyForItem;
        this.FQtyLost = FQtyLost;
        this.FPlanIssueDate = FPlanIssueDate;
        this.FRoutingID = FRoutingID;
        this.FStartDate = FStartDate;
        this.FFinishDate = FFinishDate;
        this.FAuxQtyFinish = FAuxQtyFinish;
        this.FAuxQtyScrap = FAuxQtyScrap;
        this.FAuxQtyForItem = FAuxQtyForItem;
        this.FAuxQtyLost = FAuxQtyLost;
        this.FMrpClosed = FMrpClosed;
        this.FBomInterID = FBomInterID;
        this.FQtyPass = FQtyPass;
        this.FAuxQtyPass = FAuxQtyPass;
        this.FQtyBack = FQtyBack;
        this.FAuxQtyBack = FAuxQtyBack;
        this.FFinishTime = FFinishTime;
        this.FReadyTIme = FReadyTIme;
        this.FPowerCutTime = FPowerCutTime;
        this.FFixTime = FFixTime;
        this.FWaitItemTime = FWaitItemTime;
        this.FWaitToolTime = FWaitToolTime;
        this.FTaskID = FTaskID;
        this.FWorkTypeID = FWorkTypeID;
        this.FCostObjID = FCostObjID;
        this.FStockQty = FStockQty;
        this.FAuxStockQty = FAuxStockQty;
        this.FSuspend = FSuspend;
        this.FProjectNO = FProjectNO;
        this.FProductionLineID = FProductionLineID;
        this.FReleasedQty = FReleasedQty;
        this.FReleasedAuxQty = FReleasedAuxQty;
        this.FUnScheduledQty = FUnScheduledQty;
        this.FUnScheduledAuxQty = FUnScheduledAuxQty;
        this.FSubEntryID = FSubEntryID;
        this.FScheduleID = FScheduleID;
        this.FPlanOrderInterID = FPlanOrderInterID;
        this.FProcessPrice = FProcessPrice;
        this.FProcessFee = FProcessFee;
        this.FGMPBatchNo = FGMPBatchNo;
        this.FGMPCollectRate = FGMPCollectRate;
        this.FGMPItemBalance = FGMPItemBalance;
        this.FGMPBulkQty = FGMPBulkQty;
        this.FCustID = FCustID;
        this.FMultiCheckLevel1 = FMultiCheckLevel1;
        this.FMultiCheckLevel2 = FMultiCheckLevel2;
        this.FMultiCheckLevel3 = FMultiCheckLevel3;
        this.FMultiCheckLevel4 = FMultiCheckLevel4;
        this.FMultiCheckLevel5 = FMultiCheckLevel5;
        this.FMultiCheckLevel6 = FMultiCheckLevel6;
        this.FMultiCheckDate1 = FMultiCheckDate1;
        this.FMultiCheckDate2 = FMultiCheckDate2;
        this.FMultiCheckDate3 = FMultiCheckDate3;
        this.FMultiCheckDate4 = FMultiCheckDate4;
        this.FMultiCheckDate5 = FMultiCheckDate5;
        this.FMultiCheckDate6 = FMultiCheckDate6;
        this.FCurCheckLevel = FCurCheckLevel;
        this.FMRPLockFlag = FMRPLockFlag;
        this.FHandworkClose = FHandworkClose;
        this.FConfirmerID = FConfirmerID;
        this.FConfirmDate = FConfirmDate;
        this.FInHighLimit = FInHighLimit;
        this.FInHighLimitQty = FInHighLimitQty;
        this.FAuxInHighLimitQty = FAuxInHighLimitQty;
        this.FInLowLimit = FInLowLimit;
        this.FInLowLimitQty = FInLowLimitQty;
        this.FAuxInLowLimitQty = FAuxInLowLimitQty;
        this.FChangeTimes = FChangeTimes;
        this.FCheckCommitQty = FCheckCommitQty;
        this.FAuxCheckCommitQty = FAuxCheckCommitQty;
        this.FCloseDate = FCloseDate;
        this.FPlanConfirmed = FPlanConfirmed;
        this.FPlanMode = FPlanMode;
        this.FMTONo = FMTONo;
        this.FPrintCount = FPrintCount;
        this.FFinClosed = FFinClosed;
        this.FFinCloseer = FFinCloseer;
        this.FFinClosedate = FFinClosedate;
        this.FStockFlag = FStockFlag;
        this.FStartFlag = FStartFlag;
        this.FVchBillNo = FVchBillNo;
        this.FVchInterID = FVchInterID;
        this.FCardClosed = FCardClosed;
        this.FHRReadyTime = FHRReadyTime;
        this.FSourceTranType = FSourceTranType;
        this.FSourceInterId = FSourceInterId;
        this.FSourceBillNo = FSourceBillNo;
        this.FDiscardStockInQty = FDiscardStockInQty;
        this.FSelDiscardStockInQty = FSelDiscardStockInQty;
        this.FPlanCategory = FPlanCategory;
        this.FAuxPropID = FAuxPropID;
        this.izSyncReceive = izSyncReceive;
        this.izPrint = izPrint;
        this.izSyncReceiveReturn = izSyncReceiveReturn;
        this.izPrintReturn = izPrintReturn;
    }
 
//    ICMO iCMO = new ICMO(
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // [非空]
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // [非空]
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // 
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // [非空]
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null,    // 
//            null    // 
//    );
 
    public String getFPlanCommitDate$(){
        if (Cools.isEmpty(this.FPlanCommitDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd").format(this.FPlanCommitDate);
    }
 
    public String getFPlanFinishDate$(){
        if (Cools.isEmpty(this.FPlanFinishDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd").format(this.FPlanFinishDate);
    }
 
    public String getFCommitDate$(){
        if (Cools.isEmpty(this.FCommitDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FCommitDate);
    }
 
    public String getFCheckDate$(){
        if (Cools.isEmpty(this.FCheckDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FCheckDate);
    }
 
    public String getFPlanIssueDate$(){
        if (Cools.isEmpty(this.FPlanIssueDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FPlanIssueDate);
    }
 
    public String getFStartDate$(){
        if (Cools.isEmpty(this.FStartDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FStartDate);
    }
 
    public String getFFinishDate$(){
        if (Cools.isEmpty(this.FFinishDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FFinishDate);
    }
 
    public String getFMultiCheckDate1$(){
        if (Cools.isEmpty(this.FMultiCheckDate1)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FMultiCheckDate1);
    }
 
    public String getFMultiCheckDate2$(){
        if (Cools.isEmpty(this.FMultiCheckDate2)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FMultiCheckDate2);
    }
 
    public String getFMultiCheckDate3$(){
        if (Cools.isEmpty(this.FMultiCheckDate3)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FMultiCheckDate3);
    }
 
    public String getFMultiCheckDate4$(){
        if (Cools.isEmpty(this.FMultiCheckDate4)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FMultiCheckDate4);
    }
 
    public String getFMultiCheckDate5$(){
        if (Cools.isEmpty(this.FMultiCheckDate5)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FMultiCheckDate5);
    }
 
    public String getFMultiCheckDate6$(){
        if (Cools.isEmpty(this.FMultiCheckDate6)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FMultiCheckDate6);
    }
 
    public String getFConfirmDate$(){
        if (Cools.isEmpty(this.FConfirmDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FConfirmDate);
    }
 
    public String getFCloseDate$(){
        if (Cools.isEmpty(this.FCloseDate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FCloseDate);
    }
 
    public String getFFinClosedate$(){
        if (Cools.isEmpty(this.FFinClosedate)){
            return "";
        }
        return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(this.FFinClosedate);
    }
 
 
}