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
package com.nanometer.smartlab.entity;
 
import lombok.Getter;
import lombok.Setter;
 
import java.io.Serializable;
import java.util.Date;
 
@Setter
@Getter
public class DangerousEncode implements Serializable {
    /** id  id **/
    private Long 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;
 
    //非数据库字段
    private String containerName;
 
 
 
}