package com.nanometer.smartlab.entity; import com.nanometer.smartlab.entity.enumtype.ReplaceDictType; import java.io.Serializable; import java.util.Date; public class EncodeReplaceDict implements Serializable { /** id id **/ private Long id; /** 三种类型:1.厂家,2.规格,3.包装 type **/ private ReplaceDictType type; /** 编号 number **/ private String number; /** 信息 info **/ private String info; /** 信息简写 abbreviation **/ private String abbreviation; /** 创建者 creator **/ private String creator; /** 更新时间 update_time **/ private Date updateTime; /** valid_flag **/ private Integer validFlag; /** id id **/ public Long getId() { return id; } /** id id **/ public void setId(Long id) { this.id = id; } /** 三种类型:1.厂家,2.规格,3.包装 type **/ public ReplaceDictType getType() { return type; } /** 三种类型:1.厂家,2.规格,3.包装 type **/ public void setType(ReplaceDictType type) { this.type = type; } /** 编号 number **/ public String getNumber() { return number; } /** 编号 number **/ public void setNumber(String number) { this.number = number == null ? null : number.trim(); } /** 信息 info **/ public String getInfo() { return info; } /** 信息 info **/ public void setInfo(String info) { this.info = info == null ? null : info.trim(); } /** 信息简写 abbreviation **/ public String getAbbreviation() { return abbreviation; } /** 信息简写 abbreviation **/ public void setAbbreviation(String abbreviation) { this.abbreviation = abbreviation == null ? null : abbreviation.trim(); } /** 创建者 creator **/ public String getCreator() { return creator; } /** 创建者 creator **/ public void setCreator(String creator) { this.creator = creator == null ? null : creator.trim(); } /** 更新时间 update_time **/ public Date getUpdateTime() { return updateTime; } /** 更新时间 update_time **/ public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } /** valid_flag **/ public Integer getValidFlag() { return validFlag; } /** valid_flag **/ public void setValidFlag(Integer validFlag) { this.validFlag = validFlag; } }