diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjBjForm.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjBjForm.java index ddfaf8f..118ffdd 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjBjForm.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjBjForm.java @@ -24,6 +24,12 @@ public class SjBjForm { /** 浓度单位 */ private String nddw; + /** 库存 */ + private String kc; + + /** 库存单位 */ + private String kcdw; + /** 存储条件 */ private String cctj; @@ -83,6 +89,22 @@ public class SjBjForm { this.nddw = nddw; } + public String getKc() { + return kc; + } + + public void setKc(String kc) { + this.kc = kc; + } + + public String getKcdw() { + return kcdw; + } + + public void setKcdw(String kcdw) { + this.kcdw = kcdw; + } + public String getCctj() { return cctj; } diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjSubpackageForm.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjSubpackageForm.java index b79a418..cf8607b 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjSubpackageForm.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjSubpackageForm.java @@ -13,6 +13,12 @@ public class SjSubpackageForm { /** 母液编号 */ private String bh; + /** 母液浓度 */ + private String nd; + + /** 母液浓度单位 */ + private String nddw; + /** 分装数据 */ private List list; @@ -79,4 +85,20 @@ public class SjSubpackageForm { public void setBh(String bh) { this.bh = bh; } + + public String getNd() { + return nd; + } + + public void setNd(String nd) { + this.nd = nd; + } + + public String getNddw() { + return nddw; + } + + public void setNddw(String nddw) { + this.nddw = nddw; + } }