|
@ -5,6 +5,8 @@ import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
*
|
|
*
|
|
@ -116,6 +118,20 @@ public class WlyyPrescriptionInfoVO extends UuidIdentityVOWithOperator {
|
|
*/
|
|
*/
|
|
@ApiModelProperty(value = "1可用 0删除", example = "模块1")
|
|
@ApiModelProperty(value = "1可用 0删除", example = "模块1")
|
|
private Integer del;
|
|
private Integer del;
|
|
|
|
/**
|
|
|
|
* 发药医生/审方医生
|
|
|
|
*/
|
|
|
|
private String dispUser;
|
|
|
|
/**
|
|
|
|
* 发药医生/审方医生 姓名
|
|
|
|
*/
|
|
|
|
private String dispUserName;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 发药医生/审方医生 姓名
|
|
|
|
*/
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
|
private Date dispDate;
|
|
|
|
|
|
|
|
|
|
public String getPrescriptionId() {
|
|
public String getPrescriptionId() {
|
|
@ -250,4 +266,28 @@ public class WlyyPrescriptionInfoVO extends UuidIdentityVOWithOperator {
|
|
public void setUsageName(String usageName) {
|
|
public void setUsageName(String usageName) {
|
|
this.usageName = usageName;
|
|
this.usageName = usageName;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
}
|
|
}
|