From 2ed6444f45d227e2acc6de65c3e8b582440fb83a Mon Sep 17 00:00:00 2001
From: luofl <1442745593@qq.com>
Date: 星期四, 06 三月 2025 09:20:40 +0800
Subject: [PATCH] 迭代版本:2.28

---
 ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/domain/GoodsVip.java |   16 ++++++++++------
 1 files changed, 10 insertions(+), 6 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 07d0eb0..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,11 +70,11 @@
 
     @ApiModelProperty(value = "获取返佣积分上级类型(1=直推上级,2=直帮上级)")
     @TableField("superior_type")
-    private Integer superiorType;
+    private String superiorType;
 
     @ApiModelProperty(value = "获取分佣金额上级类型(1=直推上级,2=直帮上级)")
     @TableField("superior_price_type")
-    private Integer superiorPriceType;
+    private String superiorPriceType;
 
     @ApiModelProperty(value = "核销门店可获得服务费")
     @TableField("servuce_shop_charges")
@@ -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