|
@@ -1,10 +1,14 @@
|
|
|
package com.enteprise.matchAnalysis.controller;
|
|
|
|
|
|
+import com.enteprise.common.constant.HttpStatus;
|
|
|
import com.enteprise.common.core.controller.BaseController;
|
|
|
+import com.enteprise.common.core.page.PageDomain;
|
|
|
import com.enteprise.common.core.page.TableDataInfo;
|
|
|
+import com.enteprise.common.core.page.TableSupport;
|
|
|
import com.enteprise.matchAnalysis.domain.MatchAna;
|
|
|
import com.enteprise.matchAnalysis.domain.dto.MatchDto;
|
|
|
import com.enteprise.matchAnalysis.service.IMatchService;
|
|
|
+import com.github.pagehelper.PageInfo;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
@@ -14,6 +18,8 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
+import static com.enteprise.util.CommonUtil.startPageL;
|
|
|
+
|
|
|
|
|
|
@RestController
|
|
|
@RequestMapping("/match/match")
|
|
@@ -25,8 +31,15 @@ public class MatchController extends BaseController {
|
|
|
@PostMapping("/list")
|
|
|
public TableDataInfo analysisGrowthRate(@RequestBody MatchAna matchAna)
|
|
|
{
|
|
|
- startPage();
|
|
|
+ PageDomain pageDomain = TableSupport.buildPageRequest();
|
|
|
+ Integer pageNum = pageDomain.getPageNum();
|
|
|
+ Integer pageSize = pageDomain.getPageSize();
|
|
|
List<MatchDto> list = matchService.matchAnalysisList(matchAna);
|
|
|
- return getDataTable(list);
|
|
|
+ TableDataInfo rspData = new TableDataInfo();
|
|
|
+ rspData.setCode(HttpStatus.SUCCESS);
|
|
|
+ rspData.setMsg("查询成功");
|
|
|
+ rspData.setRows(startPageL(list, pageNum, pageSize));
|
|
|
+ rspData.setTotal(new PageInfo(list).getTotal());
|
|
|
+ return rspData;
|
|
|
}
|
|
|
}
|