From a8ab542c3f3bbb304f6fd7e66897433df65a2b3e Mon Sep 17 00:00:00 2001 From: pang.jiabao <pang_jiabao@163.com> Date: 星期三, 28 二月 2024 16:28:30 +0800 Subject: [PATCH] 完善出入库日志记录 --- src/main/java/com/zy/common/model/LocDto.java | 20 ++++++++++++++++---- 1 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/zy/common/model/LocDto.java b/src/main/java/com/zy/common/model/LocDto.java index de7e59e..8406e5d 100644 --- a/src/main/java/com/zy/common/model/LocDto.java +++ b/src/main/java/com/zy/common/model/LocDto.java @@ -12,6 +12,8 @@ @Data public class LocDto { + private Long hostId; + private String locNo; private String matnr; @@ -26,6 +28,7 @@ //瀹為檯鍑哄簱閲� private Double anfme; + //鎵�闇�鍑哄簱閲� private Double needQty; @@ -38,31 +41,38 @@ public LocDto() { } - public LocDto(String locNo, String matnr, String batch, Double anfme) { + public LocDto(Long hostId,String locNo, String matnr, String batch, Double anfme,String manu) { this.locNo = locNo; this.matnr = matnr; this.batch = batch; this.anfme = anfme; + this.hostId = hostId; + this.manu = manu; } - public LocDto(String locNo, String matnr, String batch, String orderNo, Double anfme) { + public LocDto(Long hostId,String locNo, String matnr, String batch, String orderNo, Double anfme,String manu) { this.locNo = locNo; this.matnr = matnr; this.batch = batch; this.orderNo = orderNo; this.anfme = anfme; + this.hostId = hostId; + this.manu = manu; } - public LocDto(String locNo, String matnr, String maktx, String batch, String orderNo, Double anfme) { + public LocDto(Long hostId,String locNo, String matnr, String maktx, String batch, String orderNo, Double anfme,String manu) { this.locNo = locNo; this.matnr = matnr; this.maktx = maktx; this.batch = batch; this.orderNo = orderNo; this.anfme = anfme; + this.hostId = hostId; + this.manu = manu; + } - public LocDto(String locNo, String matnr, String maktx, String batch, String orderNo, Double anfme, Double needQty) { + public LocDto(Long hostId,String locNo, String matnr, String maktx, String batch, String orderNo, Double anfme, Double needQty,String manu) { this.locNo = locNo; this.matnr = matnr; this.maktx = maktx; @@ -70,6 +80,8 @@ this.orderNo = orderNo; this.anfme = anfme; this.needQty = needQty; + this.hostId = hostId; + this.manu = manu; } public String getTitle() { -- Gitblit v1.9.1