From b7e08df5a07b3fa832a46ecc31983e16f2bccc8c Mon Sep 17 00:00:00 2001
From: whycq <10027870+whycq@user.noreply.gitee.com>
Date: 星期一, 24 七月 2023 14:56:01 +0800
Subject: [PATCH] # 出库作业,和库存明细管理 排序
---
src/main/java/com/zy/asrs/entity/param/LocDetlAdjustParam.java | 52 ++++++++++++++++++++++++++++++++++++++++++++++++----
1 files changed, 48 insertions(+), 4 deletions(-)
diff --git a/src/main/java/com/zy/asrs/entity/param/LocDetlAdjustParam.java b/src/main/java/com/zy/asrs/entity/param/LocDetlAdjustParam.java
index 3a41947..5480001 100644
--- a/src/main/java/com/zy/asrs/entity/param/LocDetlAdjustParam.java
+++ b/src/main/java/com/zy/asrs/entity/param/LocDetlAdjustParam.java
@@ -7,19 +7,54 @@
*/
public class LocDetlAdjustParam {
+ //鎵樼洏鍙�
+ private String zpallet;
+
+
// 搴撲綅鍙�
private String locNo;
// 璋冩暣搴撳瓨鏄庣粏闆嗗悎
private List<LocDetlAdjust> list;
+
+
+ public String getZpallet() {
+ return zpallet;
+ }
+
+ public void setZpallet(String zpallet) {
+ this.zpallet = zpallet;
+ }
+
public static class LocDetlAdjust {
- // 鐗╂枡鍙�
+ // 浜у搧鍙�
private String matNo;
+ private String supplier;
// 鍙樻洿鏁伴噺
- private Integer count;
+ private Double count;
+ //鍙樻洿渚涘簲鍟�
+ private String vendor;
+ //鍙樻洿鏉ユ簮
+ private String source;
+
+ public String getSource() {
+ return source;
+ }
+
+ public void setSource(String source) {
+ this.source = source;
+ }
+
+ public String getVendor() {
+ return vendor;
+ }
+
+ public void setVendor(String vendor) {
+ this.vendor = vendor;
+ }
public String getMatNo() {
return matNo;
@@ -29,11 +64,19 @@
this.matNo = matNo;
}
- public Integer getCount() {
+ public String getSupplier() {
+ return supplier;
+ }
+
+ public void setSupplier(String supplier) {
+ this.supplier = supplier;
+ }
+
+ public Double getCount() {
return count;
}
- public void setCount(Integer count) {
+ public void setCount(Double count) {
this.count = count;
}
}
@@ -53,4 +96,5 @@
public void setList(List<LocDetlAdjust> list) {
this.list = list;
}
+
}
--
Gitblit v1.9.1