金额 BigDecimal

This commit is contained in:
wells
2026-08-09 12:30:23 +08:00
parent 2c6f405524
commit c5250e23ef
18 changed files with 142 additions and 81 deletions
@@ -13,7 +13,7 @@ public interface IBetService {
* 下注
*/
BetOrder placeBet(Long userId, Long groupId, String clientMsgId,
String playType, Integer betAmount);
String playType, BigDecimal betAmount);
/**
* 获取赔率
@@ -23,5 +23,5 @@ public interface IBetService {
/**
* 获取用户本局下注总额
*/
Integer getUserRoundBetAmount(Long userId, Long roundId);
BigDecimal getUserRoundBetAmount(Long userId, Long roundId);
}