Blame view

src/main/java/com/huaheng/pc/config/zoneCapacity/domain/ZoneCapacity.java 13.5 KB
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
package com.huaheng.pc.config.zoneCapacity.domain;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.Date;

@ApiModel(value="com.huaheng.pc.config.zoneCapacity.domain.ZoneCapacity")
@TableName(value = "zone_capacity")
public class ZoneCapacity implements Serializable {
    /**
     * 内部号
     */
     @TableId(value = "id", type = IdType.AUTO)
    @ApiModelProperty(value="内部号")
    private Integer id;

    /**
     * 仓库
     */
    @TableField(value = "warehouseCode")
    @ApiModelProperty(value="仓库")
    private String warehouseCode;

    /**
     * 货主
     */
    @TableField(value = "companyCode")
    @ApiModelProperty(value="货主")
    private String companyCode;

    /**
     * 商品编码
     */
    @TableField(value = "materialCode")
    @ApiModelProperty(value="商品编码")
    private String materialCode;

    /**
     * 商品名称
     */
    @TableField(value = "materialName")
    @ApiModelProperty(value="商品名称")
    private String materialName;

    /**
     * 商品规格
     */
    @TableField(value = "materialSpec")
    @ApiModelProperty(value="商品规格")
    private String materialSpec;

    /**
     * 商品单位
     */
    @TableField(value = "materialUnit")
    @ApiModelProperty(value="商品单位")
    private String materialUnit;

    /**
     * 货位过滤条件
     */
    @TableField(value = "filterCode")
    @ApiModelProperty(value="货位过滤条件")
    private String filterCode;

    /**
     * 最大数量
     */
    @TableField(value = "maxQty")
    @ApiModelProperty(value="最大数量")
    private Integer maxQty;

    /**
     * 最小数量
     */
    @TableField(value = "minQty")
    @ApiModelProperty(value="最小数量")
    private Integer minQty;

    /**
     * 创建时间
     */
    @TableField(value = "created")
    @ApiModelProperty(value="创建时间")
    private Date created;

    /**
     * 创建用户
     */
    @TableField(value = "createdBy")
    @ApiModelProperty(value="创建用户")
    private String createdBy;

    /**
     * 创建时间
     */
    @TableField(value = "lastUpdated")
    @ApiModelProperty(value="创建时间")
    private Date lastUpdated;

    /**
     * 更新用户
     */
    @TableField(value = "lastUpdatedBy")
    @ApiModelProperty(value="更新用户")
    private String lastUpdatedBy;

    /**
     * 数据版本
     */
    @TableField(value = "version")
    @ApiModelProperty(value="数据版本")
    private Integer version;

    /**
     * 自定义字段1
     */
    @TableField(value = "userDef1")
    @ApiModelProperty(value="自定义字段1")
    private String userDef1;

    /**
     * 自定义字段2
     */
    @TableField(value = "userDef2")
    @ApiModelProperty(value="自定义字段2")
    private String userDef2;

    /**
     * 自定义字段3
     */
    @TableField(value = "userDef3")
    @ApiModelProperty(value="自定义字段3")
    private String userDef3;

    /**
     * 自定义字段4
     */
    @TableField(value = "userDef4")
    @ApiModelProperty(value="自定义字段4")
    private String userDef4;

    /**
     * 自定义字段5
     */
    @TableField(value = "userDef5")
    @ApiModelProperty(value="自定义字段5")
    private String userDef5;

    /**
     * 自定义字段6
     */
    @TableField(value = "userDef6")
    @ApiModelProperty(value="自定义字段6")
    private String userDef6;

    /**
     * 自定义字段7
     */
    @TableField(value = "userDef7")
    @ApiModelProperty(value="自定义字段7")
    private String userDef7;

    /**
     * 自定义字段8
     */
    @TableField(value = "userDef8")
    @ApiModelProperty(value="自定义字段8")
    private String userDef8;

    /**
     * 处理标记
     */
    @TableField(value = "processStamp")
    @ApiModelProperty(value="处理标记")
    private String processStamp;

    private static final long serialVersionUID = 1L;

    public static final String COL_WAREHOUSECODE = "warehouseCode";

    public static final String COL_COMPANYCODE = "companyCode";

    public static final String COL_MATERIALCODE = "materialCode";

    public static final String COL_MATERIALNAME = "materialName";

    public static final String COL_MATERIALSPEC = "materialSpec";

    public static final String COL_MATERIALUNIT = "materialUnit";

    public static final String COL_FILTERCODE = "filterCode";

    public static final String COL_MAXQTY = "maxQty";

    public static final String COL_MINQTY = "minQty";

    public static final String COL_CREATED = "created";

    public static final String COL_CREATEDBY = "createdBy";

    public static final String COL_LASTUPDATED = "lastUpdated";

    public static final String COL_LASTUPDATEDBY = "lastUpdatedBy";

    public static final String COL_VERSION = "version";

    public static final String COL_USERDEF1 = "userDef1";

    public static final String COL_USERDEF2 = "userDef2";

    public static final String COL_USERDEF3 = "userDef3";

    public static final String COL_USERDEF4 = "userDef4";

    public static final String COL_USERDEF5 = "userDef5";

    public static final String COL_USERDEF6 = "userDef6";

    public static final String COL_USERDEF7 = "userDef7";

    public static final String COL_USERDEF8 = "userDef8";

    public static final String COL_PROCESSSTAMP = "processStamp";
pengcheng authored
230
mahuandong authored
231
232
233
234
235
    /**
     * 获取内部号
     *
     * @return id - 内部号
     */
pengcheng authored
236
237
238
239
    public Integer getId() {
        return id;
    }
mahuandong authored
240
241
242
243
244
    /**
     * 设置内部号
     *
     * @param id 内部号
     */
pengcheng authored
245
246
247
248
    public void setId(Integer id) {
        this.id = id;
    }
mahuandong authored
249
250
251
252
253
    /**
     * 获取仓库
     *
     * @return warehouseCode - 仓库
     */
pengcheng authored
254
255
256
257
    public String getWarehouseCode() {
        return warehouseCode;
    }
mahuandong authored
258
259
260
261
262
    /**
     * 设置仓库
     *
     * @param warehouseCode 仓库
     */
pengcheng authored
263
264
265
266
    public void setWarehouseCode(String warehouseCode) {
        this.warehouseCode = warehouseCode;
    }
mahuandong authored
267
268
269
270
271
    /**
     * 获取货主
     *
     * @return companyCode - 货主
     */
pengcheng authored
272
273
274
275
    public String getCompanyCode() {
        return companyCode;
    }
mahuandong authored
276
277
278
279
280
    /**
     * 设置货主
     *
     * @param companyCode 货主
     */
pengcheng authored
281
282
283
284
    public void setCompanyCode(String companyCode) {
        this.companyCode = companyCode;
    }
mahuandong authored
285
286
287
288
289
    /**
     * 获取商品编码
     *
     * @return materialCode - 商品编码
     */
pengcheng authored
290
291
292
293
    public String getMaterialCode() {
        return materialCode;
    }
mahuandong authored
294
295
296
297
298
    /**
     * 设置商品编码
     *
     * @param materialCode 商品编码
     */
pengcheng authored
299
300
301
302
    public void setMaterialCode(String materialCode) {
        this.materialCode = materialCode;
    }
mahuandong authored
303
304
305
306
307
    /**
     * 获取商品名称
     *
     * @return materialName - 商品名称
     */
pengcheng authored
308
309
310
311
    public String getMaterialName() {
        return materialName;
    }
mahuandong authored
312
313
314
315
316
    /**
     * 设置商品名称
     *
     * @param materialName 商品名称
     */
pengcheng authored
317
318
319
320
    public void setMaterialName(String materialName) {
        this.materialName = materialName;
    }
mahuandong authored
321
322
323
324
325
    /**
     * 获取商品规格
     *
     * @return materialSpec - 商品规格
     */
pengcheng authored
326
327
328
329
    public String getMaterialSpec() {
        return materialSpec;
    }
mahuandong authored
330
331
332
333
334
    /**
     * 设置商品规格
     *
     * @param materialSpec 商品规格
     */
pengcheng authored
335
336
337
338
    public void setMaterialSpec(String materialSpec) {
        this.materialSpec = materialSpec;
    }
mahuandong authored
339
340
341
342
343
    /**
     * 获取商品单位
     *
     * @return materialUnit - 商品单位
     */
pengcheng authored
344
345
346
347
    public String getMaterialUnit() {
        return materialUnit;
    }
mahuandong authored
348
349
350
351
352
    /**
     * 设置商品单位
     *
     * @param materialUnit 商品单位
     */
pengcheng authored
353
354
355
356
    public void setMaterialUnit(String materialUnit) {
        this.materialUnit = materialUnit;
    }
mahuandong authored
357
358
359
360
361
    /**
     * 获取货位过滤条件
     *
     * @return filterCode - 货位过滤条件
     */
pengcheng authored
362
363
364
365
    public String getFilterCode() {
        return filterCode;
    }
mahuandong authored
366
367
368
369
370
    /**
     * 设置货位过滤条件
     *
     * @param filterCode 货位过滤条件
     */
pengcheng authored
371
372
373
374
    public void setFilterCode(String filterCode) {
        this.filterCode = filterCode;
    }
mahuandong authored
375
376
377
378
379
    /**
     * 获取最大数量
     *
     * @return maxQty - 最大数量
     */
pengcheng authored
380
381
382
383
    public Integer getMaxQty() {
        return maxQty;
    }
mahuandong authored
384
385
386
387
388
    /**
     * 设置最大数量
     *
     * @param maxQty 最大数量
     */
pengcheng authored
389
390
391
392
    public void setMaxQty(Integer maxQty) {
        this.maxQty = maxQty;
    }
mahuandong authored
393
394
395
396
397
    /**
     * 获取最小数量
     *
     * @return minQty - 最小数量
     */
pengcheng authored
398
399
400
401
    public Integer getMinQty() {
        return minQty;
    }
mahuandong authored
402
403
404
405
406
    /**
     * 设置最小数量
     *
     * @param minQty 最小数量
     */
pengcheng authored
407
408
409
410
    public void setMinQty(Integer minQty) {
        this.minQty = minQty;
    }
mahuandong authored
411
412
413
414
415
    /**
     * 获取创建时间
     *
     * @return created - 创建时间
     */
pengcheng authored
416
417
418
419
    public Date getCreated() {
        return created;
    }
mahuandong authored
420
421
422
423
424
    /**
     * 设置创建时间
     *
     * @param created 创建时间
     */
pengcheng authored
425
426
427
428
    public void setCreated(Date created) {
        this.created = created;
    }
mahuandong authored
429
430
431
432
433
    /**
     * 获取创建用户
     *
     * @return createdBy - 创建用户
     */
pengcheng authored
434
435
436
437
    public String getCreatedBy() {
        return createdBy;
    }
mahuandong authored
438
439
440
441
442
    /**
     * 设置创建用户
     *
     * @param createdBy 创建用户
     */
pengcheng authored
443
444
445
446
    public void setCreatedBy(String createdBy) {
        this.createdBy = createdBy;
    }
mahuandong authored
447
448
449
450
451
    /**
     * 获取创建时间
     *
     * @return lastUpdated - 创建时间
     */
pengcheng authored
452
453
454
455
    public Date getLastUpdated() {
        return lastUpdated;
    }
mahuandong authored
456
457
458
459
460
    /**
     * 设置创建时间
     *
     * @param lastUpdated 创建时间
     */
pengcheng authored
461
462
463
464
    public void setLastUpdated(Date lastUpdated) {
        this.lastUpdated = lastUpdated;
    }
mahuandong authored
465
466
467
468
469
    /**
     * 获取更新用户
     *
     * @return lastUpdatedBy - 更新用户
     */
pengcheng authored
470
471
472
473
    public String getLastUpdatedBy() {
        return lastUpdatedBy;
    }
mahuandong authored
474
475
476
477
478
    /**
     * 设置更新用户
     *
     * @param lastUpdatedBy 更新用户
     */
pengcheng authored
479
480
481
482
    public void setLastUpdatedBy(String lastUpdatedBy) {
        this.lastUpdatedBy = lastUpdatedBy;
    }
mahuandong authored
483
484
485
486
487
    /**
     * 获取数据版本
     *
     * @return version - 数据版本
     */
pengcheng authored
488
489
490
491
    public Integer getVersion() {
        return version;
    }
mahuandong authored
492
493
494
495
496
    /**
     * 设置数据版本
     *
     * @param version 数据版本
     */
pengcheng authored
497
498
499
500
    public void setVersion(Integer version) {
        this.version = version;
    }
mahuandong authored
501
502
503
504
505
    /**
     * 获取自定义字段1
     *
     * @return userDef1 - 自定义字段1
     */
pengcheng authored
506
507
508
509
    public String getUserDef1() {
        return userDef1;
    }
mahuandong authored
510
511
512
513
514
    /**
     * 设置自定义字段1
     *
     * @param userDef1 自定义字段1
     */
pengcheng authored
515
516
517
518
    public void setUserDef1(String userDef1) {
        this.userDef1 = userDef1;
    }
mahuandong authored
519
520
521
522
523
    /**
     * 获取自定义字段2
     *
     * @return userDef2 - 自定义字段2
     */
pengcheng authored
524
525
526
527
    public String getUserDef2() {
        return userDef2;
    }
mahuandong authored
528
529
530
531
532
    /**
     * 设置自定义字段2
     *
     * @param userDef2 自定义字段2
     */
pengcheng authored
533
534
535
536
    public void setUserDef2(String userDef2) {
        this.userDef2 = userDef2;
    }
mahuandong authored
537
538
539
540
541
    /**
     * 获取自定义字段3
     *
     * @return userDef3 - 自定义字段3
     */
pengcheng authored
542
543
544
545
    public String getUserDef3() {
        return userDef3;
    }
mahuandong authored
546
547
548
549
550
    /**
     * 设置自定义字段3
     *
     * @param userDef3 自定义字段3
     */
pengcheng authored
551
552
553
554
    public void setUserDef3(String userDef3) {
        this.userDef3 = userDef3;
    }
mahuandong authored
555
556
557
558
559
    /**
     * 获取自定义字段4
     *
     * @return userDef4 - 自定义字段4
     */
pengcheng authored
560
561
562
563
    public String getUserDef4() {
        return userDef4;
    }
mahuandong authored
564
565
566
567
568
    /**
     * 设置自定义字段4
     *
     * @param userDef4 自定义字段4
     */
pengcheng authored
569
570
571
572
    public void setUserDef4(String userDef4) {
        this.userDef4 = userDef4;
    }
mahuandong authored
573
574
575
576
577
    /**
     * 获取自定义字段5
     *
     * @return userDef5 - 自定义字段5
     */
pengcheng authored
578
579
580
581
    public String getUserDef5() {
        return userDef5;
    }
mahuandong authored
582
583
584
585
586
    /**
     * 设置自定义字段5
     *
     * @param userDef5 自定义字段5
     */
pengcheng authored
587
588
589
590
    public void setUserDef5(String userDef5) {
        this.userDef5 = userDef5;
    }
mahuandong authored
591
592
593
594
595
    /**
     * 获取自定义字段6
     *
     * @return userDef6 - 自定义字段6
     */
pengcheng authored
596
597
598
599
    public String getUserDef6() {
        return userDef6;
    }
mahuandong authored
600
601
602
603
604
    /**
     * 设置自定义字段6
     *
     * @param userDef6 自定义字段6
     */
pengcheng authored
605
606
607
608
    public void setUserDef6(String userDef6) {
        this.userDef6 = userDef6;
    }
mahuandong authored
609
610
611
612
613
    /**
     * 获取自定义字段7
     *
     * @return userDef7 - 自定义字段7
     */
pengcheng authored
614
615
616
617
    public String getUserDef7() {
        return userDef7;
    }
mahuandong authored
618
619
620
621
622
    /**
     * 设置自定义字段7
     *
     * @param userDef7 自定义字段7
     */
pengcheng authored
623
624
625
626
    public void setUserDef7(String userDef7) {
        this.userDef7 = userDef7;
    }
mahuandong authored
627
628
629
630
631
    /**
     * 获取自定义字段8
     *
     * @return userDef8 - 自定义字段8
     */
pengcheng authored
632
633
634
635
    public String getUserDef8() {
        return userDef8;
    }
mahuandong authored
636
637
638
639
640
    /**
     * 设置自定义字段8
     *
     * @param userDef8 自定义字段8
     */
pengcheng authored
641
642
643
644
    public void setUserDef8(String userDef8) {
        this.userDef8 = userDef8;
    }
mahuandong authored
645
646
647
648
649
    /**
     * 获取处理标记
     *
     * @return processStamp - 处理标记
     */
pengcheng authored
650
651
652
653
    public String getProcessStamp() {
        return processStamp;
    }
mahuandong authored
654
655
656
657
658
    /**
     * 设置处理标记
     *
     * @param processStamp 处理标记
     */
pengcheng authored
659
660
661
    public void setProcessStamp(String processStamp) {
        this.processStamp = processStamp;
    }
mahuandong authored
662
}