Commit c1894ee5 authored by mlchun's avatar mlchun

1.添加机构处理接口

parent 226604c9
...@@ -209,7 +209,7 @@ public class PensionOrderServiceImpl extends CrudServiceImpl<PensionOrderDao, Pe ...@@ -209,7 +209,7 @@ public class PensionOrderServiceImpl extends CrudServiceImpl<PensionOrderDao, Pe
List<PensionOrderDTO> list2 ; List<PensionOrderDTO> list2 ;
if (pageNo+pageSize > count) { if (pageNo+pageSize > count) {
if (pageNo > count){ if (pageNo > count){
list2 = null; list2 = new ArrayList<>();
}else { }else {
list2 = list.subList(pageNo, count); list2 = list.subList(pageNo, count);
} }
......
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