This commit is contained in:
wells
2026-08-05 13:48:48 +08:00
commit 1303bf37dc
80 changed files with 5154 additions and 0 deletions
@@ -0,0 +1,27 @@
package com.tailbet.service;
import com.tailbet.model.entity.BetOrder;
import java.math.BigDecimal;
/**
* 注单Service接口
*/
public interface IBetService {
/**
* 下注
*/
BetOrder placeBet(Long userId, Long groupId, String clientMsgId,
String playType, Integer betAmount);
/**
* 获取赔率
*/
BigDecimal getOdds(String playType);
/**
* 获取用户本局下注总额
*/
Integer getUserRoundBetAmount(Long userId, Long roundId);
}