|
@ -131,6 +131,12 @@ public class WlyyPrescriptionInfoVO extends UuidIdentityVOWithOperator {
|
|
|
*/
|
|
|
@ApiModelProperty(value = "包装价格", example = "模块1")
|
|
|
private Double packRetprice;
|
|
|
|
|
|
@ApiModelProperty(value = "草药数量", example = "模块1")
|
|
|
private String herbalCount;
|
|
|
|
|
|
@ApiModelProperty(value = "贴数", example = "模块1")
|
|
|
private String postCount;
|
|
|
/**
|
|
|
* 1可用 0删除
|
|
|
*/
|
|
@ -294,4 +300,20 @@ public class WlyyPrescriptionInfoVO extends UuidIdentityVOWithOperator {
|
|
|
public void setPackRetprice(Double packRetprice) {
|
|
|
this.packRetprice = packRetprice;
|
|
|
}
|
|
|
|
|
|
public String getHerbalCount() {
|
|
|
return herbalCount;
|
|
|
}
|
|
|
|
|
|
public void setHerbalCount(String herbalCount) {
|
|
|
this.herbalCount = herbalCount;
|
|
|
}
|
|
|
|
|
|
public String getPostCount() {
|
|
|
return postCount;
|
|
|
}
|
|
|
|
|
|
public void setPostCount(String postCount) {
|
|
|
this.postCount = postCount;
|
|
|
}
|
|
|
}
|