From 9bb9952db0b22034b4aea1f486df827d77a03031 Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期四, 17 十月 2024 14:41:35 +0800
Subject: [PATCH] add:销售合计统计运费+打包费;售后扣平台款字段,增加增加统计售后“打包运费(散户)”字段

---
 src/main/java/com/mzl/flower/entity/payment/OrderItem.java |   17 ++++++++++++++++-
 1 files changed, 16 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/mzl/flower/entity/payment/OrderItem.java b/src/main/java/com/mzl/flower/entity/payment/OrderItem.java
index 5d1167b..fa2bdd7 100644
--- a/src/main/java/com/mzl/flower/entity/payment/OrderItem.java
+++ b/src/main/java/com/mzl/flower/entity/payment/OrderItem.java
@@ -61,7 +61,7 @@
     private BigDecimal markupPartner;//合伙人加价
 
     @TableField("price")
-    private BigDecimal price;//商品售价
+    private BigDecimal price;//商品售价(会员价)
 
     @TableField("total")
     private BigDecimal total;//总金额
@@ -84,4 +84,19 @@
     @TableField("deduct_amount")
     private BigDecimal deductAmount;//扣款金额
 
+    @TableField("coupon_amount")
+    private BigDecimal couponAmount;//优惠券金额/扎
+
+    @TableField("original_price")
+    private BigDecimal originalPrice;//优惠前售价/扎
+
+    @TableField("real_price")
+    private BigDecimal realPrice;//真实成交价格/每扎
+
+    @TableField("coupon_amount_total")
+    private BigDecimal couponAmountTotal;//优惠券总金额
+
+    @TableField("real_total")
+    private BigDecimal realTotal;//真实成交总价格
+
 }

--
Gitblit v1.9.3