修复删除报表和维度分页
This commit is contained in:
parent
95dd20dc7b
commit
19d5e979bb
|
|
@ -65,7 +65,11 @@ public class SalaryStatisticsDimensionWrapper extends Service {
|
|||
.isDefault(m.getIsDefault())
|
||||
.build()).collect(Collectors.toList());
|
||||
}
|
||||
return SalaryPageUtil.buildPage(queryParam.getCurrent(), queryParam.getPageSize(), dtoList, SalaryStatisticsDimensionListDTO.class);
|
||||
|
||||
PageInfo<SalaryStatisticsDimensionListDTO> salaryStatisticsDimensionListDTOPageInfo = SalaryPageUtil.buildPage(queryParam.getCurrent(), queryParam.getPageSize());
|
||||
salaryStatisticsDimensionListDTOPageInfo.setList(dtoList);
|
||||
salaryStatisticsDimensionListDTOPageInfo.setTotal(page.getTotal());
|
||||
return salaryStatisticsDimensionListDTOPageInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue