|
|
|
@@ -209,6 +209,11 @@ public class WxBillRentServiceImpl implements WxBillRentService { |
|
|
|
record.setSortColumns(BaseEntity.SortField.Id_ASC); |
|
|
|
PageHelper.startPage(pageIndex, pageSize); |
|
|
|
List<WxBillRent> billRentList = wxBillRentMapper.queryBillRentList(record); |
|
|
|
billRentList.stream().forEach(e->{ |
|
|
|
if(e.getPayRatio() == null){ |
|
|
|
e.setPayRatio(0l); |
|
|
|
} |
|
|
|
}); |
|
|
|
PageInfo<WxBillRent> pageInfo = new PageInfo<>(billRentList); |
|
|
|
return pageInfo; |
|
|
|
} |
|
|
|
|