From 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 19 七月 2022 21:49:55 +0800
Subject: [PATCH] 优化添加设备 功能
---
java110-bean/src/main/java/com/java110/dto/allocationUserStorehouse/AllocationUserStorehouseDto.java | 65 ++++++++++++++++++++++++++++++++
1 files changed, 64 insertions(+), 1 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/allocationUserStorehouse/AllocationUserStorehouseDto.java b/java110-bean/src/main/java/com/java110/dto/allocationUserStorehouse/AllocationUserStorehouseDto.java
index 112247b..81d9593 100644
--- a/java110-bean/src/main/java/com/java110/dto/allocationUserStorehouse/AllocationUserStorehouseDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/allocationUserStorehouse/AllocationUserStorehouseDto.java
@@ -29,13 +29,21 @@
private String statusCd = "0";
private String giveQuantity;
private String rstName;
+ private String parentRstName;
private String specName;
private String rstId;
+ private String parentRstId;
private String rssId;
//杞禒鎬绘暟閲�(灏忚)
private String subTotalQuantity;
//杞禒鎬绘暟閲�(澶ц)
private String highTotalQuantity;
+ private String unitCodeName;
+ private String miniUnitCodeName;
+
+ private String isFixed;
+ private String isFixedName;
+ private String resCode;
public String getAcceptUserId() {
return acceptUserId;
@@ -117,7 +125,6 @@
this.stock = stock;
}
-
public Date getCreateTime() {
return createTime;
}
@@ -189,4 +196,60 @@
public void setHighTotalQuantity(String highTotalQuantity) {
this.highTotalQuantity = highTotalQuantity;
}
+
+ public String getUnitCodeName() {
+ return unitCodeName;
+ }
+
+ public void setUnitCodeName(String unitCodeName) {
+ this.unitCodeName = unitCodeName;
+ }
+
+ public String getMiniUnitCodeName() {
+ return miniUnitCodeName;
+ }
+
+ public void setMiniUnitCodeName(String miniUnitCodeName) {
+ this.miniUnitCodeName = miniUnitCodeName;
+ }
+
+ public String getParentRstName() {
+ return parentRstName;
+ }
+
+ public void setParentRstName(String parentRstName) {
+ this.parentRstName = parentRstName;
+ }
+
+ public String getParentRstId() {
+ return parentRstId;
+ }
+
+ public void setParentRstId(String parentRstId) {
+ this.parentRstId = parentRstId;
+ }
+
+ public String getIsFixed() {
+ return isFixed;
+ }
+
+ public void setIsFixed(String isFixed) {
+ this.isFixed = isFixed;
+ }
+
+ public String getIsFixedName() {
+ return isFixedName;
+ }
+
+ public void setIsFixedName(String isFixedName) {
+ this.isFixedName = isFixedName;
+ }
+
+ public String getResCode() {
+ return resCode;
+ }
+
+ public void setResCode(String resCode) {
+ this.resCode = resCode;
+ }
}
--
Gitblit v1.8.0