Commit 14c79786 by huluobin

# update

parent 89f38d59
...@@ -43,6 +43,7 @@ public class AppCostServiceImpl implements AppCostService { ...@@ -43,6 +43,7 @@ public class AppCostServiceImpl implements AppCostService {
IPage<CostDomain> costDomainIPage = new Page<>(req.getPageNum(), req.getPageSize()); IPage<CostDomain> costDomainIPage = new Page<>(req.getPageNum(), req.getPageSize());
costDetailService.setDetail(costDomainIPage.getRecords()); costDetailService.setDetail(costDomainIPage.getRecords());
Page<CostDomain> result = costDao.appCheckCostList(costDomainIPage, req); Page<CostDomain> result = costDao.appCheckCostList(costDomainIPage, req);
costDetailService.setDetail(result.getRecords()); costDetailService.setDetail(result.getRecords());
return (Page<CostDto>) result.convert(CostDomain::castToDto); return (Page<CostDto>) result.convert(CostDomain::castToDto);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment