kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
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
package com.nanometer.smartlab.entity.dto;
 
import com.nanometer.smartlab.entity.SysWarehouseContainer;
 
import java.io.Serializable;
import java.util.*;
public class SysWarehouseDto implements Serializable {
 
    private String id;
    private String type;
    private String name;
    private String infoCode;
    private String barCode;
    private String location1;
    private String location2;
    private List<SysWarehouseContainerDto> sysWarehouseContainer;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getInfoCode() {
        return infoCode;
    }
 
    public void setInfoCode(String infoCode) {
        this.infoCode = infoCode;
    }
 
    public String getBarCode() {
        return barCode;
    }
 
    public void setBarCode(String barCode) {
        this.barCode = barCode;
    }
 
    public String getLocation1() {
        return location1;
    }
 
    public void setLocation1(String location1) {
        this.location1 = location1;
    }
 
    public String getLocation2() {
        return location2;
    }
 
    public void setLocation2(String location2) {
        this.location2 = location2;
    }
 
    public List<SysWarehouseContainerDto> getSysWarehouseContainer() {
        return sysWarehouseContainer;
    }
 
    public void setSysWarehouseContainer(List<SysWarehouseContainerDto> sysWarehouseContainer) {
        this.sysWarehouseContainer = sysWarehouseContainer;
    }
}