|
@ -304,6 +304,16 @@ public class WlyyPrescriptionVO extends UuidIdentityVOWithOperator {
|
|
|
@ApiModelProperty(value = "关联物流实体", example = "模块1")
|
|
|
WlyyPrescriptionExpressageVO expressage;
|
|
|
|
|
|
@ApiModelProperty(value = "发药医生/审方医生", example = "模块1")
|
|
|
private String dispUser;
|
|
|
|
|
|
@ApiModelProperty(value = "发药医生/审方医生 姓名", example = "模块1")
|
|
|
private String dispUserName;
|
|
|
|
|
|
@ApiModelProperty(value = "发药时间", example = "模块1")
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
private Date dispDate;
|
|
|
|
|
|
public String getOutpatientId() {
|
|
|
return outpatientId;
|
|
|
}
|
|
@ -645,4 +655,28 @@ public class WlyyPrescriptionVO extends UuidIdentityVOWithOperator {
|
|
|
public void setExpressage(WlyyPrescriptionExpressageVO expressage) {
|
|
|
this.expressage = expressage;
|
|
|
}
|
|
|
|
|
|
public String getDispUser() {
|
|
|
return dispUser;
|
|
|
}
|
|
|
|
|
|
public void setDispUser(String dispUser) {
|
|
|
this.dispUser = dispUser;
|
|
|
}
|
|
|
|
|
|
public String getDispUserName() {
|
|
|
return dispUserName;
|
|
|
}
|
|
|
|
|
|
public void setDispUserName(String dispUserName) {
|
|
|
this.dispUserName = dispUserName;
|
|
|
}
|
|
|
|
|
|
public Date getDispDate() {
|
|
|
return dispDate;
|
|
|
}
|
|
|
|
|
|
public void setDispDate(Date dispDate) {
|
|
|
this.dispDate = dispDate;
|
|
|
}
|
|
|
}
|