|
@@ -67,7 +67,6 @@ public class AppGameBettingController extends BaseController{
|
|
|
/**
|
|
|
* 下注
|
|
|
*/
|
|
|
- @Anonymous
|
|
|
@PostMapping(value = "/create")
|
|
|
@ApiOperation(value = "游戏下注", notes = "游戏下注")
|
|
|
@DSTransactional
|
|
@@ -314,7 +313,6 @@ public class AppGameBettingController extends BaseController{
|
|
|
/**
|
|
|
* 游戏输赢统计
|
|
|
*/
|
|
|
- @Anonymous
|
|
|
@PostMapping(value = "/count")
|
|
|
@ApiOperation(value = "游戏输赢统计(首页)", notes = "游戏输赢统计(首页)")
|
|
|
public HttpRet<AppGameBettingCountVO> getCount(@RequestParam(name = "strDate") String strDate, @RequestParam(name = "userId") Long userId, @RequestParam(name = "bettingType") Integer bettingType)
|
|
@@ -375,7 +373,6 @@ public class AppGameBettingController extends BaseController{
|
|
|
/**
|
|
|
* 游戏输赢详情列表
|
|
|
*/
|
|
|
- @Anonymous
|
|
|
@PostMapping(value = "/listByGameId")
|
|
|
@ApiOperation(value = "游戏输赢统计(详情)", notes = "游戏输赢统计(详情)")
|
|
|
public HttpRetPageArr<AppGameBettingVO> getListByGameId(@RequestParam(name = "gameId") Long gameId, @RequestParam(name = "userId") Long userId,
|
|
@@ -410,7 +407,6 @@ public class AppGameBettingController extends BaseController{
|
|
|
/**
|
|
|
* 游戏投注记录
|
|
|
*/
|
|
|
- @Anonymous
|
|
|
@PostMapping(value = "/listHistory")
|
|
|
@ApiOperation(value = "游戏投注记录", notes = "游戏投注记录")
|
|
|
public HttpRetPageArr<AppUserGameBettingCountVO> listHistory(@RequestParam(name = "gameId") Long gameId , @RequestParam(name = "bettingType", required = false) Integer bettingType
|