|
@ -27,7 +27,7 @@ public class ZyIvPhysicDict extends IdEntity implements java.io.Serializable {
|
|
|
private Double minDose;//最小剂量
|
|
|
private Double packSpec;
|
|
|
private Double retailPrice;//零售价
|
|
|
private String physicFrom;//药品剂型 药品剂型字典中定义
|
|
|
private String physicForm;//药品剂型 药品剂型字典中定义
|
|
|
private String toxicologyType;//毒理分类 药品毒理分类字典中定义
|
|
|
private String basicFlag;//基本药物标志 0:否;1:是
|
|
|
private String validFlag;//有效标志 0:无效;1:有效
|
|
@ -43,11 +43,11 @@ public class ZyIvPhysicDict extends IdEntity implements java.io.Serializable {
|
|
|
|
|
|
/** 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) {
|
|
|
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;
|
|
@ -58,7 +58,6 @@ public class ZyIvPhysicDict extends IdEntity implements java.io.Serializable {
|
|
|
this.minDose = minDose;
|
|
|
this.packSpec = packSpec;
|
|
|
this.retailPrice = retailPrice;
|
|
|
this.physicFrom = physicFrom;
|
|
|
this.toxicologyType = toxicologyType;
|
|
|
this.basicFlag = basicFlag;
|
|
|
this.validFlag = validFlag;
|
|
@ -158,13 +157,13 @@ public class ZyIvPhysicDict extends IdEntity implements java.io.Serializable {
|
|
|
this.retailPrice = retailPrice;
|
|
|
}
|
|
|
|
|
|
@Column(name = "physic_from", length = 50)
|
|
|
public String getPhysicFrom() {
|
|
|
return this.physicFrom;
|
|
|
@Column(name = "physic_form", length = 50)
|
|
|
public String getPhysicForm() {
|
|
|
return physicForm;
|
|
|
}
|
|
|
|
|
|
public void setPhysicFrom(String physicFrom) {
|
|
|
this.physicFrom = physicFrom;
|
|
|
public void setPhysicForm(String physicForm) {
|
|
|
this.physicForm = physicForm;
|
|
|
}
|
|
|
|
|
|
@Column(name = "toxicology_type", length = 250)
|