feat: There is no way the
This commit is contained in:
+3
-3
@@ -468,9 +468,9 @@ public class WorkFlowController {
|
||||
Page page= workFlowFeignClient.allProcess(taskCommonQuery);
|
||||
PageInfo<BusProcessName> pageInfo= new PageInfo<BusProcessName>();
|
||||
pageInfo.setPageNo(taskCommonQuery.getCurrent());
|
||||
pageInfo.setList(page.getList());
|
||||
pageInfo.setCount(page.getCount());
|
||||
pageInfo.setPageSize(page.getPageSize());
|
||||
pageInfo.setList(page.getList() == null ? new ArrayList<>():page.getList());
|
||||
pageInfo.setCount(page.getCount() == null ? 0 : page.getCount());
|
||||
pageInfo.setPageSize(page.getPageSize() == null ? 0 : page.getPageSize());
|
||||
return pageInfo;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user