From e28269e80c3d8cdd4b77566263f684532436b489 Mon Sep 17 00:00:00 2001 From: pang.jiabao <pang_jiabao@163.com> Date: 星期五, 21 二月 2025 09:13:53 +0800 Subject: [PATCH] 拣货单管理多选,全选excel导出 --- src/main/java/com/zy/common/model/DetlDto.java | 18 ++++++++++++++++++ 1 files changed, 18 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..db0e9eb 100644 --- a/src/main/java/com/zy/common/model/DetlDto.java +++ b/src/main/java/com/zy/common/model/DetlDto.java @@ -21,6 +21,9 @@ private Double anfme; private int owner; + private String ownerName; + + private int payment; private Double weight; @@ -59,6 +62,21 @@ 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 DetlDto(String matnr, String batch, Double anfme,String ownerName,int payment) { + this.matnr = matnr; + this.batch = batch; + this.anfme = anfme; + this.ownerName = ownerName; + this.payment = payment; + } + public static boolean hasList(Set<DetlDto> detlDtos, OrderDetl orderDetl) { for (DetlDto dto : detlDtos) { -- Gitblit v1.9.1