|
@@ -1,14 +1,10 @@
|
|
|
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;
|
|
@@ -34,11 +30,6 @@ public class MatchController extends BaseController {
|
|
|
Integer pageNum = matchAna.getPageNum();
|
|
|
Integer pageSize = matchAna.getPageSize();
|
|
|
List<MatchDto> list = matchService.matchAnalysisList(matchAna);
|
|
|
- TableDataInfo rspData = new TableDataInfo();
|
|
|
- rspData.setCode(HttpStatus.SUCCESS);
|
|
|
- rspData.setMsg("查询成功");
|
|
|
- rspData.setRows(startPageL(list, pageNum, pageSize));
|
|
|
- rspData.setTotal(new PageInfo(list).getTotal());
|
|
|
- return rspData;
|
|
|
+ return startPageL(list, pageNum, pageSize);
|
|
|
}
|
|
|
}
|