luqingyang
2023-10-31 f5623e6c538ebff2dfe38ff04bdb996307e7aa84
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
 
package com.consum.model.po;
 
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.walker.jdbc.BasePo;
 
/**
 * 表名:L_WH_FORM_TRANSFER *
 * @author genrator
 */
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
public class LWhFormTransfer extends BasePo<LWhFormTransfer> {
    // 序列化版本号
    private static final long serialVersionUID = 1L;
 
    // 主键
    private Long id = null;
    @JsonIgnore
    protected boolean isset_id = false;
 
    // 属性列表
    private Long inWarehouseFormId = null;
    @JsonIgnore
    protected boolean isset_inWarehouseFormId = false;
 
    private Long outWarehouseFormId = null;
    @JsonIgnore
    protected boolean isset_outWarehouseFormId = false;
 
    private Integer businessType = null;
    @JsonIgnore
    protected boolean isset_businessType = false;
 
    private String businessFormCode = null;
    @JsonIgnore
    protected boolean isset_businessFormCode = false;
 
    private Integer inWarehouseType = null;
    @JsonIgnore
    protected boolean isset_inWarehouseType = false;
 
    private Long inWarehouseId = null;
    @JsonIgnore
    protected boolean isset_inWarehouseId = false;
 
    private String inWarehouseName = null;
    @JsonIgnore
    protected boolean isset_inWarehouseName = false;
 
    private Integer outWarehouseType = null;
    @JsonIgnore
    protected boolean isset_outWarehouseType = false;
 
    private Long outWarehouseId = null;
    @JsonIgnore
    protected boolean isset_outWarehouseId = false;
 
    private String outWarehouseName = null;
    @JsonIgnore
    protected boolean isset_outWarehouseName = false;
 
    private Long inAgencyId = null;
    @JsonIgnore
    protected boolean isset_inAgencyId = false;
 
    private String inAgencyName = null;
    @JsonIgnore
    protected boolean isset_inAgencyName = false;
 
    private Long outAgencyId = null;
    @JsonIgnore
    protected boolean isset_outAgencyId = false;
 
    private String outAgencyName = null;
    @JsonIgnore
    protected boolean isset_outAgencyName = false;
 
    private Long operatorId = null;
    @JsonIgnore
    protected boolean isset_operatorId = false;
 
    private String operatorName = null;
    @JsonIgnore
    protected boolean isset_operatorName = false;
 
    private Long createTime = null;
    @JsonIgnore
    protected boolean isset_createTime = false;
 
    private Integer states = null;
    @JsonIgnore
    protected boolean isset_states = false;
 
    private Long inOperatorId = null;
    @JsonIgnore
    protected boolean isset_inOperatorId = false;
 
    private String inOperatorName = null;
    @JsonIgnore
    protected boolean isset_inOperatorName = false;
 
    private Long inTime = null;
    @JsonIgnore
    protected boolean isset_inTime = false;
 
    private Long outOperatorId = null;
    @JsonIgnore
    protected boolean isset_outOperatorId = false;
 
    private String outOperatorName = null;
    @JsonIgnore
    protected boolean isset_outOperatorName = false;
 
    private Long outputTime = null;
    @JsonIgnore
    protected boolean isset_outputTime = false;
 
    private String beiz1 = null;
    @JsonIgnore
    protected boolean isset_beiz1 = false;
 
    private String beiz2 = null;
    @JsonIgnore
    protected boolean isset_beiz2 = false;
 
    private String beiz3 = null;
    @JsonIgnore
    protected boolean isset_beiz3 = false;
 
    private String procureDoc = null;
    @JsonIgnore
    protected boolean isset_procureDoc = false;
 
    /**
     * 默认构造函数
     */
    public LWhFormTransfer() {
    }
 
    /**
     * 根据主键构造对象
     */
    public LWhFormTransfer(Long id) {
        this.setId(id);
    }
 
    /**
     * 设置主键值
     */
    @Override
    public void setPkValue(Object value) {
        this.setId((Long) value);
    }
 
    public Long getId() {
        return this.id;
    }
 
    public void setId(Long id) {
        this.id = id;
        this.isset_id = true;
    }
 
    @JsonIgnore
    public boolean isEmptyId() {
        return this.id == null;
    }
 
    public Long getInWarehouseFormId() {
        return this.inWarehouseFormId;
    }
 
    public void setInWarehouseFormId(Long inWarehouseFormId) {
        this.inWarehouseFormId = inWarehouseFormId;
        this.isset_inWarehouseFormId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyInWarehouseFormId() {
        return this.inWarehouseFormId == null;
    }
 
    public Long getOutWarehouseFormId() {
        return this.outWarehouseFormId;
    }
 
    public void setOutWarehouseFormId(Long outWarehouseFormId) {
        this.outWarehouseFormId = outWarehouseFormId;
        this.isset_outWarehouseFormId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOutWarehouseFormId() {
        return this.outWarehouseFormId == null;
    }
 
    public Integer getBusinessType() {
        return this.businessType;
    }
 
    public void setBusinessType(Integer businessType) {
        this.businessType = businessType;
        this.isset_businessType = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBusinessType() {
        return this.businessType == null;
    }
 
    public String getBusinessFormCode() {
        return this.businessFormCode;
    }
 
    public void setBusinessFormCode(String businessFormCode) {
        this.businessFormCode = businessFormCode;
        this.isset_businessFormCode = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBusinessFormCode() {
        return this.businessFormCode == null || this.businessFormCode.length() == 0;
    }
 
    public Integer getInWarehouseType() {
        return this.inWarehouseType;
    }
 
    public void setInWarehouseType(Integer inWarehouseType) {
        this.inWarehouseType = inWarehouseType;
        this.isset_inWarehouseType = true;
    }
 
    @JsonIgnore
    public boolean isEmptyInWarehouseType() {
        return this.inWarehouseType == null;
    }
 
    public Long getInWarehouseId() {
        return this.inWarehouseId;
    }
 
    public void setInWarehouseId(Long inWarehouseId) {
        this.inWarehouseId = inWarehouseId;
        this.isset_inWarehouseId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyInWarehouseId() {
        return this.inWarehouseId == null;
    }
 
    public String getInWarehouseName() {
        return this.inWarehouseName;
    }
 
    public void setInWarehouseName(String inWarehouseName) {
        this.inWarehouseName = inWarehouseName;
        this.isset_inWarehouseName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyInWarehouseName() {
        return this.inWarehouseName == null || this.inWarehouseName.length() == 0;
    }
 
    public Integer getOutWarehouseType() {
        return this.outWarehouseType;
    }
 
    public void setOutWarehouseType(Integer outWarehouseType) {
        this.outWarehouseType = outWarehouseType;
        this.isset_outWarehouseType = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOutWarehouseType() {
        return this.outWarehouseType == null;
    }
 
    public Long getOutWarehouseId() {
        return this.outWarehouseId;
    }
 
    public void setOutWarehouseId(Long outWarehouseId) {
        this.outWarehouseId = outWarehouseId;
        this.isset_outWarehouseId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOutWarehouseId() {
        return this.outWarehouseId == null;
    }
 
    public String getOutWarehouseName() {
        return this.outWarehouseName;
    }
 
    public void setOutWarehouseName(String outWarehouseName) {
        this.outWarehouseName = outWarehouseName;
        this.isset_outWarehouseName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOutWarehouseName() {
        return this.outWarehouseName == null || this.outWarehouseName.length() == 0;
    }
 
    public Long getInAgencyId() {
        return this.inAgencyId;
    }
 
    public void setInAgencyId(Long inAgencyId) {
        this.inAgencyId = inAgencyId;
        this.isset_inAgencyId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyInAgencyId() {
        return this.inAgencyId == null;
    }
 
    public String getInAgencyName() {
        return this.inAgencyName;
    }
 
    public void setInAgencyName(String inAgencyName) {
        this.inAgencyName = inAgencyName;
        this.isset_inAgencyName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyInAgencyName() {
        return this.inAgencyName == null || this.inAgencyName.length() == 0;
    }
 
    public Long getOutAgencyId() {
        return this.outAgencyId;
    }
 
    public void setOutAgencyId(Long outAgencyId) {
        this.outAgencyId = outAgencyId;
        this.isset_outAgencyId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOutAgencyId() {
        return this.outAgencyId == null;
    }
 
    public String getOutAgencyName() {
        return this.outAgencyName;
    }
 
    public void setOutAgencyName(String outAgencyName) {
        this.outAgencyName = outAgencyName;
        this.isset_outAgencyName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOutAgencyName() {
        return this.outAgencyName == null || this.outAgencyName.length() == 0;
    }
 
    public Long getOperatorId() {
        return this.operatorId;
    }
 
    public void setOperatorId(Long operatorId) {
        this.operatorId = operatorId;
        this.isset_operatorId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOperatorId() {
        return this.operatorId == null;
    }
 
    public String getOperatorName() {
        return this.operatorName;
    }
 
    public void setOperatorName(String operatorName) {
        this.operatorName = operatorName;
        this.isset_operatorName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOperatorName() {
        return this.operatorName == null || this.operatorName.length() == 0;
    }
 
    public Long getCreateTime() {
        return this.createTime;
    }
 
    public void setCreateTime(Long createTime) {
        this.createTime = createTime;
        this.isset_createTime = true;
    }
 
    @JsonIgnore
    public boolean isEmptyCreateTime() {
        return this.createTime == null;
    }
 
    public Integer getStates() {
        return this.states;
    }
 
    public void setStates(Integer states) {
        this.states = states;
        this.isset_states = true;
    }
 
    @JsonIgnore
    public boolean isEmptyStates() {
        return this.states == null;
    }
 
    public Long getInOperatorId() {
        return this.inOperatorId;
    }
 
    public void setInOperatorId(Long inOperatorId) {
        this.inOperatorId = inOperatorId;
        this.isset_inOperatorId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyInOperatorId() {
        return this.inOperatorId == null;
    }
 
    public String getInOperatorName() {
        return this.inOperatorName;
    }
 
    public void setInOperatorName(String inOperatorName) {
        this.inOperatorName = inOperatorName;
        this.isset_inOperatorName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyInOperatorName() {
        return this.inOperatorName == null || this.inOperatorName.length() == 0;
    }
 
    public Long getInTime() {
        return this.inTime;
    }
 
    public void setInTime(Long inTime) {
        this.inTime = inTime;
        this.isset_inTime = true;
    }
 
    @JsonIgnore
    public boolean isEmptyInTime() {
        return this.inTime == null;
    }
 
    public Long getOutOperatorId() {
        return this.outOperatorId;
    }
 
    public void setOutOperatorId(Long outOperatorId) {
        this.outOperatorId = outOperatorId;
        this.isset_outOperatorId = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOutOperatorId() {
        return this.outOperatorId == null;
    }
 
    public String getOutOperatorName() {
        return this.outOperatorName;
    }
 
    public void setOutOperatorName(String outOperatorName) {
        this.outOperatorName = outOperatorName;
        this.isset_outOperatorName = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOutOperatorName() {
        return this.outOperatorName == null || this.outOperatorName.length() == 0;
    }
 
    public Long getOutputTime() {
        return this.outputTime;
    }
 
    public void setOutputTime(Long outputTime) {
        this.outputTime = outputTime;
        this.isset_outputTime = true;
    }
 
    @JsonIgnore
    public boolean isEmptyOutputTime() {
        return this.outputTime == null;
    }
 
    public String getBeiz1() {
        return this.beiz1;
    }
 
    public void setBeiz1(String beiz1) {
        this.beiz1 = beiz1;
        this.isset_beiz1 = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBeiz1() {
        return this.beiz1 == null || this.beiz1.length() == 0;
    }
 
    public String getBeiz2() {
        return this.beiz2;
    }
 
    public void setBeiz2(String beiz2) {
        this.beiz2 = beiz2;
        this.isset_beiz2 = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBeiz2() {
        return this.beiz2 == null || this.beiz2.length() == 0;
    }
 
    public String getBeiz3() {
        return this.beiz3;
    }
 
    public void setBeiz3(String beiz3) {
        this.beiz3 = beiz3;
        this.isset_beiz3 = true;
    }
 
    @JsonIgnore
    public boolean isEmptyBeiz3() {
        return this.beiz3 == null || this.beiz3.length() == 0;
    }
 
    public String getProcureDoc() {
        return this.procureDoc;
    }
 
    public void setProcureDoc(String procureDoc) {
        this.procureDoc = procureDoc;
        this.isset_procureDoc = true;
    }
 
    @JsonIgnore
    public boolean isEmptyProcureDoc() {
        return this.procureDoc == null || this.procureDoc.length() == 0;
    }
 
    /**
     * 重写 toString() 方法
     */
    @Override
    public String toString() {
        return new StringBuilder()
                .append("id=").append(this.id)
                .append("inWarehouseFormId=").append(this.inWarehouseFormId)
                .append("outWarehouseFormId=").append(this.outWarehouseFormId)
                .append("businessType=").append(this.businessType)
                .append("businessFormCode=").append(this.businessFormCode)
                .append("inWarehouseType=").append(this.inWarehouseType)
                .append("inWarehouseId=").append(this.inWarehouseId)
                .append("inWarehouseName=").append(this.inWarehouseName)
                .append("outWarehouseType=").append(this.outWarehouseType)
                .append("outWarehouseId=").append(this.outWarehouseId)
                .append("outWarehouseName=").append(this.outWarehouseName)
                .append("inAgencyId=").append(this.inAgencyId)
                .append("inAgencyName=").append(this.inAgencyName)
                .append("outAgencyId=").append(this.outAgencyId)
                .append("outAgencyName=").append(this.outAgencyName)
                .append("operatorId=").append(this.operatorId)
                .append("operatorName=").append(this.operatorName)
                .append("createTime=").append(this.createTime)
                .append("states=").append(this.states)
                .append("inOperatorId=").append(this.inOperatorId)
                .append("inOperatorName=").append(this.inOperatorName)
                .append("inTime=").append(this.inTime)
                .append("outOperatorId=").append(this.outOperatorId)
                .append("outOperatorName=").append(this.outOperatorName)
                .append("outputTime=").append(this.outputTime)
                .append("beiz1=").append(this.beiz1)
                .append("beiz2=").append(this.beiz2)
                .append("beiz3=").append(this.beiz3)
                .append("procureDoc=").append(this.procureDoc)
                .toString();
    }
 
    /**
     * 克隆
     */
    public LWhFormTransfer $clone() {
        LWhFormTransfer l_wh_form_transfer = new LWhFormTransfer();
 
        // 数据库名称
        //l_wh_form_transfer.setDatabaseName_(this.getDatabaseName_());
 
        // 主键
        if (this.isset_id) {
            l_wh_form_transfer.setId(this.getId());
        }
        // 普通属性
        if (this.isset_inWarehouseFormId) {
            l_wh_form_transfer.setInWarehouseFormId(this.getInWarehouseFormId());
        }
        if (this.isset_outWarehouseFormId) {
            l_wh_form_transfer.setOutWarehouseFormId(this.getOutWarehouseFormId());
        }
        if (this.isset_businessType) {
            l_wh_form_transfer.setBusinessType(this.getBusinessType());
        }
        if (this.isset_businessFormCode) {
            l_wh_form_transfer.setBusinessFormCode(this.getBusinessFormCode());
        }
        if (this.isset_inWarehouseType) {
            l_wh_form_transfer.setInWarehouseType(this.getInWarehouseType());
        }
        if (this.isset_inWarehouseId) {
            l_wh_form_transfer.setInWarehouseId(this.getInWarehouseId());
        }
        if (this.isset_inWarehouseName) {
            l_wh_form_transfer.setInWarehouseName(this.getInWarehouseName());
        }
        if (this.isset_outWarehouseType) {
            l_wh_form_transfer.setOutWarehouseType(this.getOutWarehouseType());
        }
        if (this.isset_outWarehouseId) {
            l_wh_form_transfer.setOutWarehouseId(this.getOutWarehouseId());
        }
        if (this.isset_outWarehouseName) {
            l_wh_form_transfer.setOutWarehouseName(this.getOutWarehouseName());
        }
        if (this.isset_inAgencyId) {
            l_wh_form_transfer.setInAgencyId(this.getInAgencyId());
        }
        if (this.isset_inAgencyName) {
            l_wh_form_transfer.setInAgencyName(this.getInAgencyName());
        }
        if (this.isset_outAgencyId) {
            l_wh_form_transfer.setOutAgencyId(this.getOutAgencyId());
        }
        if (this.isset_outAgencyName) {
            l_wh_form_transfer.setOutAgencyName(this.getOutAgencyName());
        }
        if (this.isset_operatorId) {
            l_wh_form_transfer.setOperatorId(this.getOperatorId());
        }
        if (this.isset_operatorName) {
            l_wh_form_transfer.setOperatorName(this.getOperatorName());
        }
        if (this.isset_createTime) {
            l_wh_form_transfer.setCreateTime(this.getCreateTime());
        }
        if (this.isset_states) {
            l_wh_form_transfer.setStates(this.getStates());
        }
        if (this.isset_inOperatorId) {
            l_wh_form_transfer.setInOperatorId(this.getInOperatorId());
        }
        if (this.isset_inOperatorName) {
            l_wh_form_transfer.setInOperatorName(this.getInOperatorName());
        }
        if (this.isset_inTime) {
            l_wh_form_transfer.setInTime(this.getInTime());
        }
        if (this.isset_outOperatorId) {
            l_wh_form_transfer.setOutOperatorId(this.getOutOperatorId());
        }
        if (this.isset_outOperatorName) {
            l_wh_form_transfer.setOutOperatorName(this.getOutOperatorName());
        }
        if (this.isset_outputTime) {
            l_wh_form_transfer.setOutputTime(this.getOutputTime());
        }
        if (this.isset_beiz1) {
            l_wh_form_transfer.setBeiz1(this.getBeiz1());
        }
        if (this.isset_beiz2) {
            l_wh_form_transfer.setBeiz2(this.getBeiz2());
        }
        if (this.isset_beiz3) {
            l_wh_form_transfer.setBeiz3(this.getBeiz3());
        }
        if (this.isset_procureDoc) {
            l_wh_form_transfer.setProcureDoc(this.getProcureDoc());
        }
        return l_wh_form_transfer;
    }
}