Explorar o código

训练奖金池区分兑换券和大小盟主

mac %!s(int64=2) %!d(string=hai) anos
pai
achega
ed420a2fca

+ 23 - 2
kxs-system/kxs-system-api/src/main/java/com/kxs/system/api/vo/kxsapp/camp/CampUserPageVO.java

@@ -6,6 +6,7 @@ import lombok.Data;
 
 import java.io.Serial;
 import java.io.Serializable;
+import java.math.BigDecimal;
 
 /**
  * 参与创客列表vo
@@ -57,11 +58,31 @@ public class CampUserPageVO implements Serializable {
 
 
     /**
-     * 团队下单数量
+     * 团队兑换券下单数量
      */
-    @Schema(description = "团队下单数量")
+    @Schema(description = "团队兑换券下单数量")
     private Integer teamOrderNum;
 
+    /**
+     * 团队大小盟主下单数量
+     */
+    @Schema(description = "团队大小盟主下单数量")
+    private Integer teamLeaderNum;
+
+
+    /**
+     * 团队订单奖金池
+     */
+    @Schema(description = "团队奖金池")
+    private BigDecimal teamOrderPool;
+
+
+    /**
+     * 团队盟主奖金池
+     */
+    @Schema(description = "团队盟主奖金池")
+    private BigDecimal teamLeaderPool;
+
 
 
 

+ 1 - 0
kxs-system/kxs-system-biz/src/main/resources/mapper/KxsCampUserMapper.xml

@@ -15,6 +15,7 @@
         <result column="team_open_num" property="teamOpenNum" />
         <result column="team_order_num" property="teamOrderNum" />
         <result column="team_order_pool" property="teamOrderPool" />
+        <result column="team_leader_num" property="teamLeaderNum" />
         <result column="team_leader_pool" property="teamLeaderPool" />
 
     </resultMap>