Browse Source

feat: [模板管理] 分装

master
memorylkf 2 months ago
parent
commit
538780f4f4
2 changed files with 44 additions and 0 deletions
  1. +22
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjBjForm.java
  2. +22
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjSubpackageForm.java

+ 22
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjBjForm.java View File

@ -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;
}

+ 22
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/form/sj/SjSubpackageForm.java View File

@ -13,6 +13,12 @@ public class SjSubpackageForm {
/** 母液编号 */
private String bh;
/** 母液浓度 */
private String nd;
/** 母液浓度单位 */
private String nddw;
/** 分装数据 */
private List<SjSubpackageItemForm> 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;
}
}

Loading…
Cancel
Save