幸运数字-首页-vo-jackpot

This commit is contained in:
khalil
2025-05-08 11:14:16 +08:00
parent 12878ba35b
commit eabebe8a33
2 changed files with 3 additions and 0 deletions

View File

@@ -28,5 +28,7 @@ public class LuckyNumberActRoundVo {
private Integer luckyNumber;
@ApiModelProperty(value = "投入")
private BigDecimal price;
@ApiModelProperty(value = "当天jackpot")
private BigDecimal jackpot;
}

View File

@@ -86,6 +86,7 @@ public class LuckyNumberActService {
vo.setNumberList(playerInputNumberList);
vo.setPlayerNum(round.getPlayerNum());
vo.setLuckyNumber(round.getLuckyNumber());
vo.setJackpot(round.getJackpot());
return vo;
}