|
@ -90,6 +90,9 @@ public class Prescription extends IdEntity {
|
|
|
|
|
|
private String prescribeReason; //开方失败/成功原因
|
|
|
private Date prescribeTime;//开方失败、成功时间
|
|
|
//用于药品用药情况排序
|
|
|
private Integer minDrugDay; //药品最小用药天数
|
|
|
private Date presCreateTime; //处方建立时间
|
|
|
|
|
|
private String dispensaryTypeName; //类型翻译
|
|
|
|
|
@ -669,4 +672,20 @@ public class Prescription extends IdEntity {
|
|
|
public void setJwPayStatus(Integer jwPayStatus) {
|
|
|
this.jwPayStatus = jwPayStatus;
|
|
|
}
|
|
|
|
|
|
public Integer getMinDrugDay() {
|
|
|
return minDrugDay;
|
|
|
}
|
|
|
|
|
|
public void setMinDrugDay(Integer minDrugDay) {
|
|
|
this.minDrugDay = minDrugDay;
|
|
|
}
|
|
|
|
|
|
public Date getPresCreateTime() {
|
|
|
return presCreateTime;
|
|
|
}
|
|
|
|
|
|
public void setPresCreateTime(Date presCreateTime) {
|
|
|
this.presCreateTime = presCreateTime;
|
|
|
}
|
|
|
}
|