|
@@ -92,7 +92,15 @@ public class YeWeiHuiController {
|
|
return new ModelAndView("/yeweihui/qiuzhuDetail.ftl", model);
|
|
return new ModelAndView("/yeweihui/qiuzhuDetail.ftl", model);
|
|
}
|
|
}
|
|
|
|
|
|
- @PostMapping("/yeweihui/qiuzhu/reply/add.json")
|
|
|
|
|
|
+ @PostMapping("/yeweihui/qiuzhu/queryTasksByStatus.json")
|
|
|
|
+ public Model queryTasksByStatus(@Pd(name = "status") Integer status) {
|
|
|
|
+
|
|
|
|
+ List<QzTask> taskList = qzTaskService.queryQzTask(status);
|
|
|
|
+
|
|
|
|
+ return Model.newSuccess(taskList);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @PostMapping("/yeweihui/qiuzhu/reply/add.json")
|
|
public ModelOps replyQiuzhuInsert(QzTaskReply qzTaskReply) {
|
|
public ModelOps replyQiuzhuInsert(QzTaskReply qzTaskReply) {
|
|
|
|
|
|
Integer success = qzTaskReplyService.insertQzTaskReply(qzTaskReply);
|
|
Integer success = qzTaskReplyService.insertQzTaskReply(qzTaskReply);
|