/** * 获取需要提醒的记录数 * @param tableName * @param columnName * @param type 1:数字 2:日期 * @param map * @return */ @IgnoreAuth @RequestMapping("/remind/{tableName}/{columnName}/{type}") public R remindCount(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName, @PathVariable("type") String type,@RequestParam Map<String, Object> map) { map.put("table", tableName); 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)); } } int count = commonService.remindCount(map); return R.ok().put("count", count); }
时间: 2024-04-27 18:23:07 浏览: 103
使用C#中的存储过程读取和插入数据
这段代码是一个Spring MVC的控制器方法,用于获取某个数据库表中需要提醒的记录数量。其中,@IgnoreAuth注解表示不需要认证即可访问,@PathVariable注解用于将URL中的{tableName}、{columnName}、{type}参数绑定到方法的tableName、columnName、type参数上,@RequestParam注解用于将请求参数绑定到Map<String, Object>类型的map参数上,commonService是一个服务层的对象,调用它的remindCount方法获取需要提醒的记录数量。在方法内部,将tableName、columnName、type、map中的一些参数作为条件传递给commonService服务层的remindCount方法,实现查询操作。最后,将查询结果封装到R对象中返回。
阅读全文