|
@ -26,6 +26,7 @@ public class PrescriptionInfo extends IdEntity{
|
|
|
private Integer isRefrigerate; //是否冷藏 1是 0否
|
|
|
private String direction; //药品用法
|
|
|
private Double price; //药品价格
|
|
|
private Integer del; //1可用 0删除 不填数据库默认是1
|
|
|
|
|
|
@Column(name = "code",unique = true , nullable=false)
|
|
|
public String getCode() {
|
|
@ -110,4 +111,12 @@ public class PrescriptionInfo extends IdEntity{
|
|
|
public void setPrice(Double price) {
|
|
|
this.price = price;
|
|
|
}
|
|
|
|
|
|
public Integer getDel() {
|
|
|
return del;
|
|
|
}
|
|
|
|
|
|
public void setDel(Integer del) {
|
|
|
this.del = del;
|
|
|
}
|
|
|
}
|