|
@@ -31,9 +31,8 @@ public class MatchController extends BaseController {
|
|
|
@PostMapping("/list")
|
|
|
public TableDataInfo analysisGrowthRate(@RequestBody MatchAna matchAna)
|
|
|
{
|
|
|
- PageDomain pageDomain = TableSupport.buildPageRequest();
|
|
|
- Integer pageNum = pageDomain.getPageNum();
|
|
|
- Integer pageSize = pageDomain.getPageSize();
|
|
|
+ Integer pageNum = matchAna.getPageNum();
|
|
|
+ Integer pageSize = matchAna.getPageSize();
|
|
|
List<MatchDto> list = matchService.matchAnalysisList(matchAna);
|
|
|
TableDataInfo rspData = new TableDataInfo();
|
|
|
rspData.setCode(HttpStatus.SUCCESS);
|