From 2e6c812f367e1c51ec116a2eb1920872b46bfbea Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期一, 07 四月 2025 11:35:51 +0800 Subject: [PATCH] 修改订单支付金额重复添加问题 --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsVip.java | 14 +++++++++----- 1 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsVip.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsVip.java index 4828120..be67275 100644 --- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsVip.java +++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsVip.java @@ -70,7 +70,7 @@ @ApiModelProperty(value = "获取返佣积分上级类型(1=直推上级,2=直帮上级)") @TableField("superior_type") - private String superiorType; + private String superiorType; @ApiModelProperty(value = "获取分佣金额上级类型(1=直推上级,2=直帮上级)") @TableField("superior_price_type") @@ -88,21 +88,25 @@ @TableField("technician_points") private Integer technicianPoints; - @ApiModelProperty(value = "绑定门店可获得分佣金额") + @ApiModelProperty(value = "服务商可获得分佣金额") @TableField("bound_shop_charges") private BigDecimal boundShopCharges; - @ApiModelProperty(value = "绑定门店可获得返佣积分") + @ApiModelProperty(value = "服务商可获得返佣积分") @TableField("bound_shop_points") private Integer boundShopPoints; - @ApiModelProperty(value = "绑定门店上级门店可获得分佣金额") + @ApiModelProperty(value = "高级服务商上级门店可获得分佣金额") @TableField("bound_shop_superiors_charges") private BigDecimal boundShopSuperiorsCharges; - @ApiModelProperty(value = "绑定门店上级门店可获得返佣积分") + @ApiModelProperty(value = "高级服务商上级门店可获得返佣积分") @TableField("bound_shop_superiors_points") private Integer boundShopSuperiorsPoints; + @ApiModelProperty(value = "vip名子") + @TableField(exist = false) + private String vipName; + } -- Gitblit v1.7.1