|
@ -35,6 +35,8 @@ public class PrescriptionLog extends IdEntity {
|
|
|
private Integer userType; //1 患者 2医生
|
|
|
private Integer flag; //操作是否成功 1成功 0失败
|
|
|
private String remark; //备注信息
|
|
|
private String hospital;//医院code
|
|
|
private String hospitalName;//医院名称
|
|
|
|
|
|
@Column(name = "code")
|
|
|
public String getCode() {
|
|
@ -125,4 +127,20 @@ public class PrescriptionLog extends IdEntity {
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
public String getHospital() {
|
|
|
return hospital;
|
|
|
}
|
|
|
|
|
|
public void setHospital(String hospital) {
|
|
|
this.hospital = hospital;
|
|
|
}
|
|
|
|
|
|
public String getHospitalName() {
|
|
|
return hospitalName;
|
|
|
}
|
|
|
|
|
|
public void setHospitalName(String hospitalName) {
|
|
|
this.hospitalName = hospitalName;
|
|
|
}
|
|
|
}
|