package com.nanometer.smartlab.entity; import java.io.Serializable; import java.util.Date; 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; public Long getId() { return id; } public void setId(Long id) { this.id = id; } /** 柜码 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; } }