|
@ -51,6 +51,7 @@ public class Prescription extends IdEntity {
|
|
|
private String reviewedReason; //审核不通过的原因
|
|
|
// private Double ybCost; //医保费用
|
|
|
// private Double myCost; //自己付费
|
|
|
private Integer prescriptionType; //处方类型:1、门诊处方,2、住院处方
|
|
|
|
|
|
@Column(name = "code", unique = true, nullable = false)
|
|
|
public String getCode() {
|
|
@ -316,4 +317,12 @@ public class Prescription extends IdEntity {
|
|
|
public void setReviewedReason(String reviewedReason) {
|
|
|
this.reviewedReason = reviewedReason;
|
|
|
}
|
|
|
|
|
|
public Integer getPrescriptionType() {
|
|
|
return prescriptionType;
|
|
|
}
|
|
|
|
|
|
public void setPrescriptionType(Integer prescriptionType) {
|
|
|
this.prescriptionType = prescriptionType;
|
|
|
}
|
|
|
}
|