From b6ae28c9579fbd98df7709d00f1a4e88a31a62ef Mon Sep 17 00:00:00 2001 From: gcj Date: Sat, 30 Nov 2019 16:17:47 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E9=87=87=E8=B4=AD=E6=94=B6=E8=B4=A7?= =?UTF-8?q?=E3=80=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/cn/estsh/i3plus/pojo/wms/dto/WmsPartQtyDto.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/dto/WmsPartQtyDto.java b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/dto/WmsPartQtyDto.java index 4bd50f1..865ca6e 100644 --- a/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/dto/WmsPartQtyDto.java +++ b/modules/i3plus-pojo-wms/src/main/java/cn/estsh/i3plus/pojo/wms/dto/WmsPartQtyDto.java @@ -26,10 +26,10 @@ public class WmsPartQtyDto { } public Double getRcQty() { - return rcQty == null? 0.0:qty; + return rcQty == null? 0.0:rcQty; } public Double getDueQty() { - return dueQty == null? 0.0:qty; + return dueQty == null? 0.0:dueQty; } }