Explorar el Código

add betting_type

kk hace 2 meses
padre
commit
4253592a1a

+ 1 - 0
game-business/src/main/java/com/game/business/controller/AppGameBettingController.java

@@ -265,6 +265,7 @@ public class AppGameBettingController extends BaseController{
         for (int i = 0; i < gameList.size(); i++) {
             AppGame appGame = gameList.get(i);
             AppGameBettingDetailsCountVO appGameBettingDetailsCountDTO = new AppGameBettingDetailsCountVO();
+            appGameBettingDetailsCountDTO.setBettingType(bettingType);
             appGameBettingDetailsCountDTO.setGameId(appGame.getId());
             appGameBettingDetailsCountDTO.setGameName(appGame.getName());
             appGameBettingDetailsCountDTO.setLogoUrl(appGame.getLogoUrl());

+ 3 - 0
game-business/src/main/java/com/game/business/vo/AppGameBettingDetailsCountVO.java

@@ -20,6 +20,9 @@ public class AppGameBettingDetailsCountVO {
     @ApiModelProperty(value = "游戏路径")
     private String gamePath;
 
+    @ApiModelProperty(value = "投注类型:0:余额 1:金币")
+    private Integer bettingType ;
+
     @ApiModelProperty(value = "数量")
     private long bettingCount;