|
@ -87,6 +87,8 @@ public class Prescription extends IdEntity {
|
|
|
private String prescribeReason; //开方失败/成功原因
|
|
|
private Date prescribeTime ;//开方失败、成功时间
|
|
|
|
|
|
private String dispensaryTypeName; //类型翻译
|
|
|
|
|
|
@Column(name = "code", unique = true, nullable = false)
|
|
|
public String getCode() {
|
|
|
return code;
|
|
@ -641,4 +643,8 @@ public class Prescription extends IdEntity {
|
|
|
public void setPrescribeTime(Date prescribeTime) {
|
|
|
this.prescribeTime = prescribeTime;
|
|
|
}
|
|
|
|
|
|
public void setDispensaryTypeName(String dispensaryTypeName) {
|
|
|
this.dispensaryTypeName = dispensaryTypeName;
|
|
|
}
|
|
|
}
|