|
@ -23,13 +23,13 @@ public class PrescriptionInfo extends IdEntity{
|
|
|
private Integer num; //药品数目
|
|
|
private Integer isRefrigerate; //是否冷藏 1是 0否
|
|
|
private String direction; //药品用法
|
|
|
private Double price; //药品单价
|
|
|
private Integer price; //药品单价 单位是分
|
|
|
private Integer del; //1可用 0删除 不填数据库默认是1
|
|
|
private String jwSubCode;//智业子处方号
|
|
|
private String drugNumUnit;//数量单位编码
|
|
|
private String drugNumUnitName;//数量单位名称
|
|
|
private Double cost;//金额
|
|
|
private String charge;//自付
|
|
|
private Integer cost;//金额 单位是分
|
|
|
private Integer charge;//自付 单位是分
|
|
|
private String bindFlag;//成组标志, 0.非成组,1.成组
|
|
|
private Integer dayCount;//用药天数
|
|
|
private String drugUsage;//用药方法编码
|
|
@ -122,11 +122,11 @@ public class PrescriptionInfo extends IdEntity{
|
|
|
this.direction = direction;
|
|
|
}
|
|
|
|
|
|
public Double getPrice() {
|
|
|
public Integer getPrice() {
|
|
|
return price;
|
|
|
}
|
|
|
|
|
|
public void setPrice(Double price) {
|
|
|
public void setPrice(Integer price) {
|
|
|
this.price = price;
|
|
|
}
|
|
|
|
|
@ -162,19 +162,19 @@ public class PrescriptionInfo extends IdEntity{
|
|
|
this.drugNumUnitName = drugNumUnitName;
|
|
|
}
|
|
|
|
|
|
public Double getCost() {
|
|
|
public Integer getCost() {
|
|
|
return cost;
|
|
|
}
|
|
|
|
|
|
public void setCost(Double cost) {
|
|
|
public void setCost(Integer cost) {
|
|
|
this.cost = cost;
|
|
|
}
|
|
|
|
|
|
public String getCharge() {
|
|
|
public Integer getCharge() {
|
|
|
return charge;
|
|
|
}
|
|
|
|
|
|
public void setCharge(String charge) {
|
|
|
public void setCharge(Integer charge) {
|
|
|
this.charge = charge;
|
|
|
}
|
|
|
|