|
@ -1,223 +0,0 @@
|
|
|
package com.yihu.wlyy.service.entity.zydict;
|
|
|
|
|
|
|
|
|
import com.yihu.wlyy.service.common.model.IdEntity;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
/**
|
|
|
* ZyIvPhysicDict entity. @author MyEclipse Persistence Tools
|
|
|
* 药品字典
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "zy_iv_physic_dict")
|
|
|
public class ZyIvPhysicDict extends IdEntity implements java.io.Serializable {
|
|
|
|
|
|
// Fields
|
|
|
|
|
|
private String physicCode;//药品代码
|
|
|
private String physicName;//药品名称
|
|
|
private String physicSpec;//药品规格
|
|
|
private String subjectClass;//药品科目 科目类别字典中定义
|
|
|
private String doseUnit;//剂量单位 计量单位字典中定义
|
|
|
private String quantityUnit;//数量单位 计量单位字典中定义
|
|
|
private String packUnit;//包装单位 计量单位字典中定义
|
|
|
private Double minDose;//最小剂量
|
|
|
private Double packSpec;
|
|
|
private Double retailPrice;//零售价
|
|
|
private String physicForm;//药品剂型 药品剂型字典中定义
|
|
|
private String toxicologyType;//毒理分类 药品毒理分类字典中定义
|
|
|
private String basicFlag;//基本药物标志 0:否;1:是
|
|
|
private String validFlag;//有效标志 0:无效;1:有效
|
|
|
private String spellCode;//拼音首码
|
|
|
private String wbzxCode;//五笔首码
|
|
|
private Integer sequence;//排序号
|
|
|
|
|
|
// Constructors
|
|
|
|
|
|
/** default constructor */
|
|
|
public ZyIvPhysicDict() {
|
|
|
}
|
|
|
|
|
|
/** full constructor */
|
|
|
public ZyIvPhysicDict(String physicCode, String physicName,
|
|
|
String physicSpec, String subjectClass, String doseUnit,
|
|
|
String quantityUnit, String packUnit, Double minDose,
|
|
|
Double packSpec, Double retailPrice, String physicFrom,
|
|
|
String toxicologyType, String basicFlag, String validFlag,
|
|
|
String spellCode, String wbzxCode, Integer sequence) {
|
|
|
this.physicCode = physicCode;
|
|
|
this.physicName = physicName;
|
|
|
this.physicSpec = physicSpec;
|
|
|
this.subjectClass = subjectClass;
|
|
|
this.doseUnit = doseUnit;
|
|
|
this.quantityUnit = quantityUnit;
|
|
|
this.packUnit = packUnit;
|
|
|
this.minDose = minDose;
|
|
|
this.packSpec = packSpec;
|
|
|
this.retailPrice = retailPrice;
|
|
|
this.toxicologyType = toxicologyType;
|
|
|
this.basicFlag = basicFlag;
|
|
|
this.validFlag = validFlag;
|
|
|
this.spellCode = spellCode;
|
|
|
this.wbzxCode = wbzxCode;
|
|
|
this.sequence = sequence;
|
|
|
}
|
|
|
|
|
|
|
|
|
@Column(name = "physic_code", length = 50)
|
|
|
public String getPhysicCode() {
|
|
|
return this.physicCode;
|
|
|
}
|
|
|
|
|
|
public void setPhysicCode(String physicCode) {
|
|
|
this.physicCode = physicCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "physic_name", length = 2000)
|
|
|
public String getPhysicName() {
|
|
|
return this.physicName;
|
|
|
}
|
|
|
|
|
|
public void setPhysicName(String physicName) {
|
|
|
this.physicName = physicName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "physic_spec", length = 2000)
|
|
|
public String getPhysicSpec() {
|
|
|
return this.physicSpec;
|
|
|
}
|
|
|
|
|
|
public void setPhysicSpec(String physicSpec) {
|
|
|
this.physicSpec = physicSpec;
|
|
|
}
|
|
|
|
|
|
@Column(name = "subject_class", length = 200)
|
|
|
public String getSubjectClass() {
|
|
|
return this.subjectClass;
|
|
|
}
|
|
|
|
|
|
public void setSubjectClass(String subjectClass) {
|
|
|
this.subjectClass = subjectClass;
|
|
|
}
|
|
|
|
|
|
@Column(name = "dose_unit", length = 50)
|
|
|
public String getDoseUnit() {
|
|
|
return this.doseUnit;
|
|
|
}
|
|
|
|
|
|
public void setDoseUnit(String doseUnit) {
|
|
|
this.doseUnit = doseUnit;
|
|
|
}
|
|
|
|
|
|
@Column(name = "quantity_unit", length = 50)
|
|
|
public String getQuantityUnit() {
|
|
|
return this.quantityUnit;
|
|
|
}
|
|
|
|
|
|
public void setQuantityUnit(String quantityUnit) {
|
|
|
this.quantityUnit = quantityUnit;
|
|
|
}
|
|
|
|
|
|
@Column(name = "pack_unit", length = 250)
|
|
|
public String getPackUnit() {
|
|
|
return this.packUnit;
|
|
|
}
|
|
|
|
|
|
public void setPackUnit(String packUnit) {
|
|
|
this.packUnit = packUnit;
|
|
|
}
|
|
|
|
|
|
@Column(name = "min_dose", precision = 20, scale = 6)
|
|
|
public Double getMinDose() {
|
|
|
return this.minDose;
|
|
|
}
|
|
|
|
|
|
public void setMinDose(Double minDose) {
|
|
|
this.minDose = minDose;
|
|
|
}
|
|
|
|
|
|
@Column(name = "pack_spec", precision = 20, scale = 6)
|
|
|
public Double getPackSpec() {
|
|
|
return this.packSpec;
|
|
|
}
|
|
|
|
|
|
public void setPackSpec(Double packSpec) {
|
|
|
this.packSpec = packSpec;
|
|
|
}
|
|
|
|
|
|
@Column(name = "retail_price", precision = 20, scale = 6)
|
|
|
public Double getRetailPrice() {
|
|
|
return this.retailPrice;
|
|
|
}
|
|
|
|
|
|
public void setRetailPrice(Double retailPrice) {
|
|
|
this.retailPrice = retailPrice;
|
|
|
}
|
|
|
|
|
|
@Column(name = "physic_form", length = 50)
|
|
|
public String getPhysicForm() {
|
|
|
return physicForm;
|
|
|
}
|
|
|
|
|
|
public void setPhysicForm(String physicForm) {
|
|
|
this.physicForm = physicForm;
|
|
|
}
|
|
|
|
|
|
@Column(name = "toxicology_type", length = 250)
|
|
|
public String getToxicologyType() {
|
|
|
return this.toxicologyType;
|
|
|
}
|
|
|
|
|
|
public void setToxicologyType(String toxicologyType) {
|
|
|
this.toxicologyType = toxicologyType;
|
|
|
}
|
|
|
|
|
|
@Column(name = "basic_flag", length = 50)
|
|
|
public String getBasicFlag() {
|
|
|
return this.basicFlag;
|
|
|
}
|
|
|
|
|
|
public void setBasicFlag(String basicFlag) {
|
|
|
this.basicFlag = basicFlag;
|
|
|
}
|
|
|
|
|
|
@Column(name = "valid_flag", length = 50)
|
|
|
public String getValidFlag() {
|
|
|
return this.validFlag;
|
|
|
}
|
|
|
|
|
|
public void setValidFlag(String validFlag) {
|
|
|
this.validFlag = validFlag;
|
|
|
}
|
|
|
|
|
|
@Column(name = "spell_code", length = 200)
|
|
|
public String getSpellCode() {
|
|
|
return this.spellCode;
|
|
|
}
|
|
|
|
|
|
public void setSpellCode(String spellCode) {
|
|
|
this.spellCode = spellCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "wbzx_code", length = 200)
|
|
|
public String getWbzxCode() {
|
|
|
return this.wbzxCode;
|
|
|
}
|
|
|
|
|
|
public void setWbzxCode(String wbzxCode) {
|
|
|
this.wbzxCode = wbzxCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "sequence")
|
|
|
public Integer getSequence() {
|
|
|
return this.sequence;
|
|
|
}
|
|
|
|
|
|
public void setSequence(Integer sequence) {
|
|
|
this.sequence = sequence;
|
|
|
}
|
|
|
|
|
|
}
|