From 087db8aee2e9cbfb44b8e61531c1cace5e36a6e2 Mon Sep 17 00:00:00 2001 From: zyx <zyx123456> Date: 星期日, 28 四月 2024 14:53:52 +0800 Subject: [PATCH] ERP接口同步 --- src/main/java/com/zy/asrs/entity/param/OpenOrderPakoutParam.java | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 58 insertions(+), 1 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 19021f5..6e28c92 100644 --- a/src/main/java/com/zy/asrs/entity/param/OpenOrderPakoutParam.java +++ b/src/main/java/com/zy/asrs/entity/param/OpenOrderPakoutParam.java @@ -2,6 +2,8 @@ import lombok.Data; +import java.text.ParseException; +import java.text.SimpleDateFormat; import java.util.Date; import java.util.List; @@ -26,12 +28,51 @@ //鍏徃 private String cAccount; + //璋冩嫧 + private String allocation; + //澶囨敞 private String cMemo; - private List<Body> ADDBody; + 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{ @@ -43,6 +84,22 @@ 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