public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){ logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params)); //从请求头中获取到角色的信息 String role = String.valueOf(request.getSession().getAttribute("role")); // 判断对应的角色信息 if(false) return R.error(511,"永不会进入"); else if("用户".equals(role)) params.put("yonghuId",request.getSession().getAttribute("userId")); else if("医生".equals(role)) params.put("yishengId",request.getSession().getAttribute("userId")); if(params.get("orderBy")==null || params.get("orderBy")==""){ params.put("orderBy","id"); } // 根据对应的角色信息查询数据 PageUtils page = chatService.queryPage(params); //字典表数据转换 List<ChatView> list =(List<ChatView>)page.getList(); for(ChatView c:list){ //修改对应字典表字段 dictionaryService.dictionaryConvert(c, request); } return R.ok().put("data", page); }
时间: 2023-07-15 22:12:03 浏览: 189
快速解决SpringMVC @RequestBody 用map接收请求参数的问题
这段代码是一个Java的Controller类中的page方法,用于分页查询聊天记录。在方法中首先获取了请求头中的角色信息,然后根据不同的角色信息设置查询参数。接着判断是否有排序方式,若没有则设置默认排序方式。最后调用chatService的queryPage方法进行分页查询,将查询结果进行字典表数据转换,然后返回查询结果。
阅读全文