From 1496a7e366a2796b825e7b989b82654ae1aca6b8 Mon Sep 17 00:00:00 2001 From: 姜友瑶 <935090232@qq.com> Date: Mon, 30 May 2022 20:48:03 +0800 Subject: [PATCH] fix:修复退款订单退款业绩没计算为负数问题 --- zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopDeliveryInfo.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopDeliveryInfo.java b/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopDeliveryInfo.java index 5bd8247..28519b6 100644 --- a/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopDeliveryInfo.java +++ b/zq-erp/src/main/java/com/matrix/system/shopXcx/bean/ShopDeliveryInfo.java @@ -129,6 +129,7 @@ private Long shopId; private Long companyId; + private Long receiveId; public Long getCompanyId() { return companyId; } @@ -302,4 +303,12 @@ public void setShopId(Long shopId) { this.shopId = shopId; } + + public Long getReceiveId() { + return receiveId; + } + + public void setReceiveId(Long receiveId) { + this.receiveId = receiveId; + } } \ No newline at end of file -- Gitblit v1.9.1