物资类型优化

This commit is contained in:
sxu 2024-11-05 11:31:30 +08:00
parent 3034230451
commit 7db1794871
1 changed files with 2 additions and 1 deletions

View File

@ -77,7 +77,8 @@ public class TypeController extends BaseController {
}
Integer pageIndex = Convert.toInt(ServletUtils.getParameter("pageNum"), 1);
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));
}
/**