/** * 后端列表 */ @RequestMapping("/page") public R page(@RequestParam Map<String, Object> params,YonghuEntity yonghu, HttpServletRequest request){ EntityWrapper<YonghuEntity> ew = new EntityWrapper<YonghuEntity>(); PageUtils page = yonghuService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yonghu), params), params)); return R.ok().put("data", page); } /** * 前端列表 */ @IgnoreAuth @RequestMapping("/list") public R list(@RequestParam Map<String, Object> params,YonghuEntity yonghu, HttpServletRequest request){ EntityWrapper<YonghuEntity> ew = new EntityWrapper<YonghuEntity>(); PageUtils page = yonghuService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, yonghu), params), params)); return R.ok().put("data", page); }
时间: 2023-06-24 22:04:45 浏览: 118
快速解决SpringMVC @RequestBody 用map接收请求参数的问题
这段代码是一个基于Spring Boot框架的Java后端API接口,包含两个方法:page和list。其中,page方法用于处理后台页面请求,list方法用于处理前台页面请求。这两个方法都接收一个Map类型的参数params、一个YonghuEntity类型的参数yonghu和一个HttpServletRequest类型的参数request。它们都使用了MPUtil类中的方法来构建查询条件,并最终调用yonghuService中的queryPage方法来进行分页查询。最终返回一个R对象,其中包含查询结果。其中,@RequestMapping注解用于指定API接口的路径,@IgnoreAuth注解用于表示该接口不需要进行身份验证。
阅读全文