/** * 分页查询用户 * @param user * @param page * @return */ @RequestMapping("/list") public Map<String, Object> list(User user, @RequestParam(value = "latelyLoginTimes", required = false) String latelyLoginTimes, @RequestParam(value = "page", required = false) Integer page, @RequestParam(value = "pageSize", required = false) Integer pageSize) { String s_bregistrationDate = null; // 开始时间 String s_eregistrationDate = null; // 结束时间 if (StringUtil.isNotEmpty(latelyLoginTimes)) { String[] strs = latelyLoginTimes.split(" - "); // 拆分时间段 s_bregistrationDate = strs[0]; s_eregistrationDate = strs[1]; } List<User> userList = userService.list(user, s_bregistrationDate, s_eregistrationDate, page - 1, pageSize); Long total = userService.getCount(user, s_bregistrationDate, s_eregistrationDate); Map<String, Object> resultMap = new HashMap<String, Object>(); resultMap.put("errorNo", 0); resultMap.put("data", userList); resultMap.put("total", total); return resultMap; }
时间: 2024-02-14 16:08:35 浏览: 71
系统用户分页查询源码,仅供参考
这是一个基于 Java Spring 框架的 Web 应用程序中的控制器方法。该方法使用 @RequestMapping 注解将其映射到 "/list" 的 URL 路径。当用户发送 GET 请求到该 URL 时,这个方法会根据传入的参数进行分页查询用户。其中,user 参数表示要查询的用户对象,latelyLoginTimes 参数表示最近登录时间,page 参数表示当前页数,pageSize 参数表示每页的记录数。在方法内部,首先将 latelyLoginTimes 参数拆分成开始时间和结束时间。然后,调用 userService 的 list 方法进行分页查询,获取用户列表。最后,将查询到的用户列表及其总数封装在一个 HashMap 中,并将 errorNo 设为 0 表示没有错误,data 设为查询到的用户列表,total 设为查询到的用户总数。最终,将这个 HashMap 作为响应返回给用户。该方法的作用是分页查询用户,并返回查询到的用户列表及其总数。
阅读全文