gdg
2020-12-21 9ce91fb10ce1d1022112aeeee5a0cdc7301dac4d
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
package com.nanometer.smartlab.entity;
 
import java.util.Date;
 
public class DangerousEncode {
    /** id  id **/
    private String id;
 
    /** 柜码  container_number **/
    private String containerNumber;
 
    /** 试剂名称码  reagent_code **/
    private String reagentCode;
 
    /** 试剂名称  reagent_name **/
    private String reagentName;
 
    /** CAS号  cas **/
    private String cas;
 
    /** 备注  memo **/
    private String memo;
 
    /** 性状  property **/
    private String property;
 
    /** 特性  feature **/
    private String feature;
 
    /** 相忌  avoid **/
    private String avoid;
 
    /** 状态  status **/
    private String status;
 
    /** 灭火器  fire **/
    private String fire;
 
    /** 随机码  random **/
    private String random;
 
    /** 编码  code **/
    private String code;
 
    /** 更新时间  update_time **/
    private Date updateTime;
 
    /** 创建用户  creator **/
    private String creator;
 
    /** 使用次数  count **/
    private Integer count;
 
    /**   id  id   **/
    public String getId() {
        return id;
    }
 
    /**   id  id   **/
    public void setId(String id) {
        this.id = id == null ? null : id.trim();
    }
 
    /**   柜码  container_number   **/
    public String getContainerNumber() {
        return containerNumber;
    }
 
    /**   柜码  container_number   **/
    public void setContainerNumber(String containerNumber) {
        this.containerNumber = containerNumber == null ? null : containerNumber.trim();
    }
 
    /**   试剂名称码  reagent_code   **/
    public String getReagentCode() {
        return reagentCode;
    }
 
    /**   试剂名称码  reagent_code   **/
    public void setReagentCode(String reagentCode) {
        this.reagentCode = reagentCode == null ? null : reagentCode.trim();
    }
 
    /**   试剂名称  reagent_name   **/
    public String getReagentName() {
        return reagentName;
    }
 
    /**   试剂名称  reagent_name   **/
    public void setReagentName(String reagentName) {
        this.reagentName = reagentName == null ? null : reagentName.trim();
    }
 
    /**   CAS号  cas   **/
    public String getCas() {
        return cas;
    }
 
    /**   CAS号  cas   **/
    public void setCas(String cas) {
        this.cas = cas == null ? null : cas.trim();
    }
 
    /**   备注  memo   **/
    public String getMemo() {
        return memo;
    }
 
    /**   备注  memo   **/
    public void setMemo(String memo) {
        this.memo = memo == null ? null : memo.trim();
    }
 
    /**   性状  property   **/
    public String getProperty() {
        return property;
    }
 
    /**   性状  property   **/
    public void setProperty(String property) {
        this.property = property == null ? null : property.trim();
    }
 
    /**   特性  feature   **/
    public String getFeature() {
        return feature;
    }
 
    /**   特性  feature   **/
    public void setFeature(String feature) {
        this.feature = feature == null ? null : feature.trim();
    }
 
    /**   相忌  avoid   **/
    public String getAvoid() {
        return avoid;
    }
 
    /**   相忌  avoid   **/
    public void setAvoid(String avoid) {
        this.avoid = avoid == null ? null : avoid.trim();
    }
 
    /**   状态  status   **/
    public String getStatus() {
        return status;
    }
 
    /**   状态  status   **/
    public void setStatus(String status) {
        this.status = status == null ? null : status.trim();
    }
 
    /**   灭火器  fire   **/
    public String getFire() {
        return fire;
    }
 
    /**   灭火器  fire   **/
    public void setFire(String fire) {
        this.fire = fire == null ? null : fire.trim();
    }
 
    /**   随机码  random   **/
    public String getRandom() {
        return random;
    }
 
    /**   随机码  random   **/
    public void setRandom(String random) {
        this.random = random == null ? null : random.trim();
    }
 
    /**   编码  code   **/
    public String getCode() {
        return code;
    }
 
    /**   编码  code   **/
    public void setCode(String code) {
        this.code = code == null ? null : code.trim();
    }
 
    /**   更新时间  update_time   **/
    public Date getUpdateTime() {
        return updateTime;
    }
 
    /**   更新时间  update_time   **/
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    /**   创建用户  creator   **/
    public String getCreator() {
        return creator;
    }
 
    /**   创建用户  creator   **/
    public void setCreator(String creator) {
        this.creator = creator == null ? null : creator.trim();
    }
 
    /**   使用次数  count   **/
    public Integer getCount() {
        return count;
    }
 
    /**   使用次数  count   **/
    public void setCount(Integer count) {
        this.count = count;
    }
 
}