物资类型优化
This commit is contained in:
parent
3034230451
commit
7db1794871
|
|
@ -77,7 +77,8 @@ public class TypeController extends BaseController {
|
||||||
}
|
}
|
||||||
Integer pageIndex = Convert.toInt(ServletUtils.getParameter("pageNum"), 1);
|
Integer pageIndex = Convert.toInt(ServletUtils.getParameter("pageNum"), 1);
|
||||||
Integer pageSize = Convert.toInt(ServletUtils.getParameter("pageSize"), 10);
|
Integer pageSize = Convert.toInt(ServletUtils.getParameter("pageSize"), 10);
|
||||||
return AjaxResult.success(ListPagingUtil.paging(pageIndex, pageSize, typeService.getMyTypeAndBindUsers(myTypeList)));
|
List<MaTypeListVo> result = typeService.getMyTypeAndBindUsers(myTypeList);
|
||||||
|
return AjaxResult.success(ListPagingUtil.paging(pageIndex, pageSize, result));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue