From 37286cd9b177e9a1b8f28bfbc054c8cfedec6a5e Mon Sep 17 00:00:00 2001
From: luxiaotao1123 <t1341870251@63.com>
Date: 星期四, 26 八月 2021 08:50:57 +0800
Subject: [PATCH] Merge branch 'xgmasrs' of https://gitee.com/luxiaotao1123/zy-asrs into xgmasrs
---
src/main/java/com/zy/asrs/entity/param/FullStoreParam.java | 39 ++++++++++++++++++++++++++++++++-------
1 files changed, 32 insertions(+), 7 deletions(-)
diff --git a/src/main/java/com/zy/asrs/entity/param/FullStoreParam.java b/src/main/java/com/zy/asrs/entity/param/FullStoreParam.java
index e19c0ea..0662da5 100644
--- a/src/main/java/com/zy/asrs/entity/param/FullStoreParam.java
+++ b/src/main/java/com/zy/asrs/entity/param/FullStoreParam.java
@@ -7,19 +7,36 @@
*/
public class FullStoreParam {
+ // 鎵樼洏鏉$爜
+ private String barcode;
+
// 绔欑偣缂栧彿
private Integer devpNo;
- // 鐗╂枡鍒楄〃鏁版嵁
+ // 浜у搧鍒楄〃鏁版嵁
private List<MatCodeStore> list;
- static class MatCodeStore {
+ public static class MatCodeStore {
- // 鐗╂枡缂栧彿
+ //鍗曟嵁缂栧彿
+ private String billNo;
+
+ //搴忓彿
+ private Integer seqNo;
+
+ // 浜у搧缂栧彿
private String matNo;
- // 鐗╂枡鏁伴噺
- private Integer count;
+ // 浜у搧鏁伴噺
+ private Double count;
+
+ public String getBillNo() { return billNo; }
+
+ public void setBillNo(String billNo) { this.billNo = billNo; }
+
+ public Integer getSeqNo() { return seqNo; }
+
+ public void setSeqNo(Integer seqNo) { this.seqNo = seqNo; }
public String getMatNo() {
return matNo;
@@ -29,15 +46,23 @@
this.matNo = matNo;
}
- public Integer getCount() {
+ public Double getCount() {
return count;
}
- public void setCount(Integer count) {
+ public void setCount(Double count) {
this.count = count;
}
}
+ public String getBarcode() {
+ return barcode;
+ }
+
+ public void setBarcode(String barcode) {
+ this.barcode = barcode;
+ }
+
public Integer getDevpNo() {
return devpNo;
}
--
Gitblit v1.9.1