From 43800e0eac7ba25e58d251922d95577cca4bef25 Mon Sep 17 00:00:00 2001
From: zyx <zyx123456>
Date: 星期一, 13 五月 2024 10:41:14 +0800
Subject: [PATCH] #
---
src/main/java/com/zy/asrs/entity/param/OpenOrderPakoutParam.java | 102 ++++++++++++++++++++++++++++++++++++++++++++++++---
1 files changed, 96 insertions(+), 6 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..87809c6 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,112 @@
package com.zy.asrs.entity.param;
-import com.zy.common.model.DetlDto;
import lombok.Data;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.Date;
import java.util.List;
/**
- * Created by vincent on 2022/4/8
+ * 娴疯灏擴8鍑哄簱鍗曞悓姝ュ弬鏁�
*/
@Data
public class OpenOrderPakoutParam {
- private String orderNo;
+ //鍏ュ簱鍗曞彿
+ private String cCode;
- private String orderType;
+ //鍗曟嵁鏃ユ湡
+ private Date 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) throws ParseException {
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/DD hh:mm:ss");
+ this.dDate = sdf.parse(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 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