From f34da12c558d57d156529e23c04e2388e60b94e5 Mon Sep 17 00:00:00 2001 From: zjj <3272660260@qq.com> Date: 星期三, 14 六月 2023 10:27:17 +0800 Subject: [PATCH] #组托逻辑 --- src/main/java/com/zy/common/model/DetlDto.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/common/model/DetlDto.java b/src/main/java/com/zy/common/model/DetlDto.java index 39c7841..4dc94d0 100644 --- a/src/main/java/com/zy/common/model/DetlDto.java +++ b/src/main/java/com/zy/common/model/DetlDto.java @@ -22,6 +22,8 @@ private int owner; + private int payment; + private Double weight; public DetlDto() { @@ -59,6 +61,13 @@ this.weight = weight; } + public DetlDto(String matnr, String batch, Double anfme,Double weight) { + this.matnr = matnr; + this.batch = batch; + this.anfme = anfme; + this.weight = weight; + } + public static boolean hasList(Set<DetlDto> detlDtos, OrderDetl orderDetl) { for (DetlDto dto : detlDtos) { -- Gitblit v1.9.1