|
@@ -46,4 +46,18 @@ public class YeWeiHuiController {
|
|
|
|
|
|
return new ModelAndView("/yeweihui/ribao.ftl", model);
|
|
return new ModelAndView("/yeweihui/ribao.ftl", model);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @GetMapping("/yeweihui/ribaoDy.html")
|
|
|
|
+ public ModelAndView yeweihuiRibaoDy(ModelMap model) {
|
|
|
|
+
|
|
|
|
+ Map<String, Object> queryParam = Maps.newLinkedHashMap();
|
|
|
|
+ queryParam.put("userId", "12345677");
|
|
|
|
+ queryParam.put("statistics", "M");
|
|
|
|
+
|
|
|
|
+ List<QzTask> taskList = qzTaskService.selectAll();
|
|
|
|
+
|
|
|
|
+ model.put("taskList", YvanUtil.toJsonPretty(taskList));
|
|
|
|
+
|
|
|
|
+ return new ModelAndView("/yeweihui/ribao.ftl", model);
|
|
|
|
+ }
|
|
}
|
|
}
|