From 7729a2d6f38542f665567dba021aa5385ce1da5d Mon Sep 17 00:00:00 2001 From: zhangc <zc@123> Date: 星期四, 12 十二月 2024 14:23:58 +0800 Subject: [PATCH] 添加`@ManagerAuth`注解memo并优化sellout逻辑 --- src/main/java/com/zy/asrs/entity/param/OpenOrderPakoutParam.java | 104 ++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 97 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..1bdfb4f 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.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 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