From d39d882a8a56d84b76bb407c3b99b82d6d2e4f40 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期五, 27 十二月 2024 11:38:54 +0800 Subject: [PATCH] 修改分佣逻辑 --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java index a4d8e97..3a5830a 100644 --- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java +++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/Shop.java @@ -98,9 +98,9 @@ @TableField("shop_all_point") private Integer shopAllPoint; - @ApiModelProperty(value = "门店业绩积分") - @TableField("shop_point") - private Integer shopPoint; + @ApiModelProperty(value = "绑定下级门店分佣积分") + @TableField("lower_level_share_point") + private Integer lowerLevelSharePoint; @ApiModelProperty(value = "门店返佣积分") @TableField("share_point") @@ -118,6 +118,9 @@ @TableField("lave_point") private Integer lavePoint; + @TableField(exist = false) + private Integer laveUsePoint; + @ApiModelProperty(value = "门店分佣总金额") @TableField("giveaway_all_money") private BigDecimal giveawayAllMoney; -- Gitblit v1.7.1