|
@ -84,6 +84,9 @@ public class Prescription extends IdEntity {
|
|
private String jwRateTypeCode;//基卫-费别类型编码
|
|
private String jwRateTypeCode;//基卫-费别类型编码
|
|
private String jwRegisterFee; //基卫-诊金
|
|
private String jwRegisterFee; //基卫-诊金
|
|
|
|
|
|
|
|
private String prescribeReason; //开方失败/成功原因
|
|
|
|
private String prescribeTime ;//开方失败、成功时间
|
|
|
|
|
|
@Column(name = "code", unique = true, nullable = false)
|
|
@Column(name = "code", unique = true, nullable = false)
|
|
public String getCode() {
|
|
public String getCode() {
|
|
return code;
|
|
return code;
|
|
@ -622,4 +625,20 @@ public class Prescription extends IdEntity {
|
|
}
|
|
}
|
|
return "";
|
|
return "";
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String getPrescribeReason() {
|
|
|
|
return prescribeReason;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPrescribeReason(String prescribeReason) {
|
|
|
|
this.prescribeReason = prescribeReason;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getPrescribeTime() {
|
|
|
|
return prescribeTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPrescribeTime(String prescribeTime) {
|
|
|
|
this.prescribeTime = prescribeTime;
|
|
|
|
}
|
|
}
|
|
}
|