From ae4a1432bdb9732d1b6117c32a8fde8ad2a0f770 Mon Sep 17 00:00:00 2001 From: puzhibing <393733352@qq.com> Date: 星期日, 12 一月 2025 11:27:23 +0800 Subject: [PATCH] 1.修复bug:【用户管理】详情页,消费总金额不对。期望:只统计在当前门店核销的订单金额 --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsArea.java | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsArea.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsArea.java index 3e67c87..7e97c84 100644 --- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsArea.java +++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsArea.java @@ -95,7 +95,11 @@ @ApiModelProperty(value = "获取返佣积分上级类型(1=直推上级,2=直帮上级)") @TableField("superior_type") - private Integer superiorType; + private String superiorType; + + @ApiModelProperty(value = "获取分佣金额上级类型(1=直推上级,2=直帮上级)") + @TableField("superior_price_type") + private String superiorPriceType; @ApiModelProperty(value = "核销门店可获得服务费") @TableField("servuce_shop_charges") @@ -125,6 +129,10 @@ @TableField("bound_shop_superiors_points") private Integer boundShopSuperiorsPoints; + @ApiModelProperty(value = "vip名子") + @TableField(exist = false) + private String vipName; + @TableField(exist = false) private List<GoodsArea> goodsAreaList; -- Gitblit v1.7.1