|
@@ -69,7 +69,7 @@ public class TaMatchController extends BaseController {
|
69
|
69
|
@ApiOperation(value="竞彩开奖结果列表", notes = "竞彩开奖结果列表", httpMethod = "GET", response = ResponseBean.class)
|
70
|
70
|
public ResponseBean getResult(@ApiParam("页码") @RequestParam(value ="pageNum",defaultValue = "1") Integer pageNum,
|
71
|
71
|
@ApiParam("单页数据量") @RequestParam(value ="pageSize",defaultValue = "10") Integer pageSize,
|
72
|
|
- @ApiParam("彩种类型: 可用类型, 请查阅彩种字典") @RequestParam(value ="lotteryId", required = false) String lotteryId) throws Exception {
|
|
72
|
+ @ApiParam("彩种类型: 可用类型, 请查阅彩种字典") @RequestParam(value ="lotteryId") String lotteryId) throws Exception {
|
73
|
73
|
|
74
|
74
|
IPage<TaMatch> page = new Page<>(pageNum, pageSize);
|
75
|
75
|
IPage<TaMatch> result = iTaMatchService.getResult(page, lotteryId);
|