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; }