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
package com.nanometer.smartlab.entity;
 
import com.nanometer.smartlab.entity.enumtype.ValidFlag;
 
import java.io.Serializable;
import java.sql.Timestamp;
 
/**
 * Created by johnny on 17/11/23.
 */
@SuppressWarnings("serial")
public class SysLaboratoryContainer implements Serializable {
 
    private String id;
    private String laboratoryId;
    private String laboratoryName;
    private String type;
    private String laboratoryType;
    private String containerCode;
    private String infoCode;
    private String structure;
    private String name;
    private Timestamp createTime;
    private Timestamp updateTime;
    private ValidFlag validFlag;
    private String characterLeft;
    private String characterRight;
    private String controllerCode;
    private String controllerName;
    private String projectId;
 
    public String getControllerName() {
        return controllerName;
    }
 
    public void setControllerName(String controllerName) {
        this.controllerName = controllerName;
    }
 
    public String getLaboratoryName() {
          return laboratoryName;
      }
 
      public void setLaboratoryName(String laboratoryName) {
          this.laboratoryName = laboratoryName;
      }
 
      public String getLaboratoryType() {
          return laboratoryType;
      }
 
      public void setLaboratoryType(String laboratoryType) {
          this.laboratoryType = laboratoryType;
      }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getLaboratoryId() {
        return laboratoryId;
    }
 
    public void setLaboratoryId(String laboratoryId) {
        this.laboratoryId = laboratoryId;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getContainerCode() {
        return containerCode;
    }
 
    public void setContainerCode(String containerCode) {
        this.containerCode = containerCode;
    }
 
    public String getInfoCode() {
        return infoCode;
    }
 
    public void setInfoCode(String infoCode) {
        this.infoCode = infoCode;
    }
 
    public String getStructure() {
        return structure;
    }
 
    public void setStructure(String structure) {
        this.structure = structure;
    }
 
    public Timestamp getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Timestamp createTime) {
        this.createTime = createTime;
    }
 
    public Timestamp getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Timestamp updateTime) {
        this.updateTime = updateTime;
    }
 
    public ValidFlag getValidFlag() {
        return validFlag;
    }
 
    public void setValidFlag(ValidFlag validFlag) {
        this.validFlag = validFlag;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getCharacterLeft() {
        return characterLeft;
    }
 
    public void setCharacterLeft(String characterLeft) {
        this.characterLeft = characterLeft;
    }
 
    public String getCharacterRight() {
        return characterRight;
    }
 
    public void setCharacterRight(String characterRight) {
        this.characterRight = characterRight;
    }
 
    public String getControllerCode() {
        return controllerCode;
    }
 
    public void setControllerCode(String controllerCode) {
        this.controllerCode = controllerCode;
    }
 
    public String getProjectId() {
        return projectId;
    }
 
    public void setProjectId(String projectId) {
        this.projectId = projectId;
    }
}