@RequestMapping("/remind/{columnName}/{type}") public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, @PathVariable("type") String type,@RequestParam Map<String, Object> map) { map.put("column", columnName); map.put("type", type); if(type.equals("2")) { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); Calendar c = Calendar.getInstance(); Date remindStartDate = null; Date remindEndDate = null; if(map.get("remindstart")!=null) { Integer remindStart = Integer.parseInt(map.get("remindstart").toString()); c.setTime(new Date()); c.add(Calendar.DAY_OF_MONTH,remindStart); remindStartDate = c.getTime(); map.put("remindstart", sdf.format(remindStartDate)); } if(map.get("remindend")!=null) { Integer remindEnd = Integer.parseInt(map.get("remindend").toString()); c.setTime(new Date()); c.add(Calendar.DAY_OF_MONTH,remindEnd); remindEndDate = c.getTime(); map.put("remindend", sdf.format(remindEndDate)); } } Wrapper<ChuxiaodengjiEntity> wrapper = new EntityWrapper<ChuxiaodengjiEntity>(); if(map.get("remindstart")!=null) { wrapper.ge(columnName, map.get("remindstart")); } if(map.get("remindend")!=null) { wrapper.le(columnName, map.get("remindend")); } int count = chuxiaodengjiService.selectCount(wrapper); return R.ok().put("count", count); }
时间: 2024-02-16 12:01:32 浏览: 100
这段代码是一个Java Spring Boot项目中的Controller类中的一个方法,用来返回符合条件的数据数量。具体来说,该方法使用了Spring Boot中的注解 @RequestMapping 来映射请求路径 "/remind/{columnName}/{type}",其中 {columnName} 和 {type} 是路径变量,用来表示查询的列名和类型。该方法接收一个 HttpServletRequest 对象和一个 Map 类型的参数 map,其中 map 中存储了查询条件。如果查询类型为 2,该方法会根据查询条件中的 remindstart 和 remindend 字段计算出起始日期和结束日期,并将其加入查询条件中。最后,该方法使用 MyBatis-Plus 提供的 Wrapper 类来构建查询条件,查询符合条件的数据数量,并返回一个 R 类型的结果,其中包含了查询到的数据数量。
相关问题
@RequestMapping("/remind/{columnName}/{type}") public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, @PathVariable("type") String type,@RequestParam Map<String, Object> map) { map.put("column", columnName); map.put("type", type);
这段代码是一个 Java Spring Boot 项目中的 Controller 类中的方法。该方法使用了 Spring Boot 中的注解 @RequestMapping 来映射请求路径 "/remind/{columnName}/{type}",其中 {columnName} 和 {type} 是路径变量,用来表示查询的列名和类型。该方法接收一个 HttpServletRequest 对象和一个 Map 类型的参数 map,其中 map 用来存储查询条件。
在方法体中,该方法首先将 columnName 和 type 存入 map 中,作为查询条件。然后使用 put 方法将 key 为 "column" 和 "type" 的键值对存入 map 中。这样在后面的查询中,就可以通过 map.get("column") 和 map.get("type") 来获取这两个值,从而构建查询条件。
@RequestMapping("/remind/{columnName}/{type}")
这是一个Spring MVC的注解,用于将HTTP请求映射到指定的控制器方法上。其中,"/remind/{columnName}/{type}"表示请求的URL路径,{columnName}和{type}是占位符,可以在方法中通过@PathVariable注解获取对应的值。例如,请求路径为"/remind/user/name",其中columnName为"user",type为"name"。
阅读全文