From d814bde01eb91d1544b718463cd31317726bbf6b Mon Sep 17 00:00:00 2001 From: zjj <3272660260@qq.com> Date: 星期三, 27 十二月 2023 21:52:22 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/mdqdasrsVersion' into mdqdasrsVersion --- src/main/java/com/zy/asrs/entity/param/StockOutParam.java | 46 +++++++++------------------------------------- 1 files changed, 9 insertions(+), 37 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/param/StockOutParam.java b/src/main/java/com/zy/asrs/entity/param/StockOutParam.java index f0d9867..901b7fc 100644 --- a/src/main/java/com/zy/asrs/entity/param/StockOutParam.java +++ b/src/main/java/com/zy/asrs/entity/param/StockOutParam.java @@ -1,10 +1,13 @@ package com.zy.asrs.entity.param; +import lombok.Data; + import java.util.List; /** * Created by vincent on 2020/6/13 */ +@Data public class StockOutParam { // 鍑虹珯鍙� @@ -13,22 +16,7 @@ // 鐗╂枡缂栧彿闆嗗悎 private List<LocDetl> locDetls; - public Integer getOutSite() { - return outSite; - } - - public void setOutSite(Integer outSite) { - this.outSite = outSite; - } - - public List<LocDetl> getLocDetls() { - return locDetls; - } - - public void setLocDetls(List<LocDetl> locDetls) { - this.locDetls = locDetls; - } - + @Data public static class LocDetl { // 搴撲綅鍙� @@ -37,32 +25,16 @@ // 鍟嗗搧缂栧彿 private String matnr; + // 搴忓垪鐮� + private String batch; + // 鏁伴噺 private Double count; - public String getLocNo() { - return locNo; - } + private int owner; - public void setLocNo(String locNo) { - this.locNo = locNo; - } + private int payment; - public String getMatnr() { - return matnr; - } - - public void setMatnr(String matnr) { - this.matnr = matnr; - } - - public Double getCount() { - return count; - } - - public void setCount(Double count) { - this.count = count; - } } } -- Gitblit v1.9.1