From 05f5fcc1efbd628f08c868fdaf622554ff85271a Mon Sep 17 00:00:00 2001
From: xiaogang <905166056@qq.com>
Date: 星期五, 21 五月 2021 17:44:43 +0800
Subject: [PATCH] 优化采购管理、优化维修工单办结、优化相关内容
---
java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java | 64 +++++++++++++++++++++++++++++---
1 files changed, 58 insertions(+), 6 deletions(-)
diff --git a/java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java b/java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java
index 8f64c6f..fea4698 100644
--- a/java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/allocationStorehouse/AllocationStorehouseDto.java
@@ -14,10 +14,10 @@
* add by wuxw 2019/4/24
**/
public class AllocationStorehouseDto extends PageDto implements Serializable {
-
- public static final String STATE_AUDIT = "1201";//鐘舵�侊紝1201 璋冩嫧瀹℃牳 1202 璋冩嫧瀹屾垚 1202 璋冩嫧澶辫触
- public static final String STATE_SUCCESS = "1202";//鐘舵�侊紝1201 璋冩嫧瀹℃牳 1202 璋冩嫧瀹屾垚 1202 璋冩嫧澶辫触
- public static final String STATE_FAIL = "1203";//鐘舵�侊紝1201 璋冩嫧瀹℃牳 1202 璋冩嫧瀹屾垚 1202 璋冩嫧澶辫触
+ public static final String STATE_APPLY = "1200";//鐘舵�侊紝1200 璋冩嫧鐢宠 1201 璋冩嫧瀹℃牳 1202 璋冩嫧瀹屾垚 1203 璋冩嫧澶辫触
+ public static final String STATE_AUDIT = "1201";//鐘舵�侊紝1200 璋冩嫧鐢宠 1201 璋冩嫧瀹℃牳 1202 璋冩嫧瀹屾垚 1203 璋冩嫧澶辫触
+ public static final String STATE_SUCCESS = "1202";//鐘舵�侊紝1200 璋冩嫧鐢宠 1201 璋冩嫧瀹℃牳 1202 璋冩嫧瀹屾垚 1203 璋冩嫧澶辫触
+ public static final String STATE_FAIL = "1203";//鐘舵�侊紝1200 璋冩嫧鐢宠 1201 璋冩嫧瀹℃牳 1202 璋冩嫧瀹屾垚 1203 璋冩嫧澶辫触
private String asId;
private String[] asIds;
private String storeId;
@@ -36,9 +36,14 @@
private String resCode;
private Date createTime;
private String applyId;
+ private String price;
+ private String originalStock;
+ private String rstName;
+ private String specName;
+ private String rstId;
+ private String rssId;
private String statusCd = "0";
-
private String currentUserId;
private String processInstanceId;
@@ -48,7 +53,6 @@
private String staffId;
private String staffName;
private String staffTel;
-
public String getAsId() {
return asId;
@@ -266,4 +270,52 @@
public void setApplyId(String applyId) {
this.applyId = applyId;
}
+
+ public String getPrice() {
+ return price;
+ }
+
+ public void setPrice(String price) {
+ this.price = price;
+ }
+
+ public String getOriginalStock() {
+ return originalStock;
+ }
+
+ public void setOriginalStock(String originalStock) {
+ this.originalStock = originalStock;
+ }
+
+ public String getRstName() {
+ return rstName;
+ }
+
+ public void setRstName(String rstName) {
+ this.rstName = rstName;
+ }
+
+ public String getSpecName() {
+ return specName;
+ }
+
+ public void setSpecName(String specName) {
+ this.specName = specName;
+ }
+
+ public String getRstId() {
+ return rstId;
+ }
+
+ public void setRstId(String rstId) {
+ this.rstId = rstId;
+ }
+
+ public String getRssId() {
+ return rssId;
+ }
+
+ public void setRssId(String rssId) {
+ this.rssId = rssId;
+ }
}
--
Gitblit v1.8.0