From 391dd89a6583e0f1eceaf1297fd852e3da32bf68 Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期四, 17 四月 2025 16:39:30 +0800
Subject: [PATCH] 出库作业里面显示冻结/未冻结

---
 src/main/java/com/zy/asrs/entity/param/OpenOrderPakoutParam.java |  107 ++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 files changed, 100 insertions(+), 7 deletions(-)

diff --git a/src/main/java/com/zy/asrs/entity/param/OpenOrderPakoutParam.java b/src/main/java/com/zy/asrs/entity/param/OpenOrderPakoutParam.java
index a44287a..d7345a1 100644
--- a/src/main/java/com/zy/asrs/entity/param/OpenOrderPakoutParam.java
+++ b/src/main/java/com/zy/asrs/entity/param/OpenOrderPakoutParam.java
@@ -1,22 +1,115 @@
 package com.zy.asrs.entity.param;
 
-import com.zy.common.model.DetlDto;
 import lombok.Data;
 
 import java.util.List;
 
 /**
- * Created by vincent on 2022/4/8
+ * 娴疯灏擴8鍑哄簱鍗曞悓姝ュ弬鏁�
  */
 @Data
-public class OpenOrderPakoutParam {
+public class
+OpenOrderPakoutParam {
 
-    private String orderNo;
+    //鍏ュ簱鍗曞彿
+    private String cCode;
 
-    private String orderType;
+    //鍗曟嵁鏃ユ湡
+    private String dDate;
 
-    private String orderTime;
+    //绫诲瀷
+    private String type;
 
-    private List<DetlDto> orderDetails;
+    //鍒跺崟浜�
+    private String cMaker;
+
+    //涓讳綋
+    private String cAccount;
+
+    public void setcCusName(String cCusName) {
+        this.cCusName = cCusName;
+    }
+
+    //鍏徃
+    private String cCusName;
+
+    //璋冩嫧
+    private String allocation;
+
+    //澶囨敞
+    private String cMemo;
+
+    private List<Body> ADDBody;
+
+    //private List<DetlDto> orderDetails;
+    public void setcCode(String cCode) {
+        this.cCode = cCode;
+    }
+
+    public void setdDate(String dDate) {
+//        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-DD hh:mm:ss");
+//        this.dDate =  sdf.parse(dDate);
+
+        this.dDate = dDate;
+    }
+
+//    public void setdDate$(Date dDate) {
+//        this.dDate =  dDate;
+//    }
+
+    public void setcMaker(String cMaker) {
+        this.cMaker = cMaker;
+    }
+
+    public void setcAccount(String cAccount) {
+        this.cAccount = cAccount;
+    }
+
+    public void setType(String type) {
+        this.type = type;
+    }
+
+    public void setcMemo(String cMemo) {
+        this.cMemo = cMemo;
+    }
+
+    public void setaDDBody(List<Body> aDDBody) {
+        this.ADDBody = aDDBody;
+    }
+
+    public void setAllocation(String allocation) {
+        this.allocation = allocation;
+    }
+
+    @Data
+    public static class Body{
+        //瀛樿揣缂栫爜
+        private String cInvCode;
+        //鏁伴噺
+        private Double iQuantity;
+        //鎵瑰彿
+        private String cBatch;
+
+        //鎵瑰彿
+        private String cPackage;
+        //琛屽娉�
+        private String cbMemo;
+
+        public void setcInvCode(String cInvCode) {
+            this.cInvCode = cInvCode;
+        }
+
+        public void setiQuantity(Double iQuantity) {
+            this.iQuantity = iQuantity;
+        }
+
+        public void setcBatch(String cBatch) {
+            this.cBatch = cBatch;
+        }
+
+        public void setCbMemo(String cbMemo) {
+            this.cbMemo = cbMemo;
+        }
+    }
 
 }

--
Gitblit v1.9.1