|
|
|
@ -67,7 +67,6 @@ public class ApiWorkIssueController { |
|
|
|
return workIssueService.categoryList(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
*事件审核 |
|
|
|
* @return |
|
|
|
@ -88,6 +87,7 @@ public class ApiWorkIssueController { |
|
|
|
return workIssueService.selectWorkIssueListOfNewOrHot(formDto); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* 工作端-议题详情 |
|
|
|
*/ |
|
|
|
@ -106,6 +106,15 @@ public class ApiWorkIssueController { |
|
|
|
return workIssueService.selectWorkHotOrNewEventComment(formDTO); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|
* 事件评论回复列表接口 |
|
|
|
*/ |
|
|
|
@GetMapping("event/commentReplyList") |
|
|
|
public Result<WorkEventsCommentsDTO> commentReplyList(WorkCommentReplyFormDTO workCommentReplyFormDTO){ |
|
|
|
return workIssueService.commentReplyList(workCommentReplyFormDTO); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|
* 议题处理进度(后台/工作端用) |
|
|
|
@ -124,12 +133,5 @@ public class ApiWorkIssueController { |
|
|
|
return workIssueService.handleSubmit(dto); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* |
|
|
|
* 事件评论回复列表接口 |
|
|
|
*/ |
|
|
|
@GetMapping("event/commentReplyList") |
|
|
|
public Result<WorkEventsCommentsDTO> commentReplyList(WorkCommentReplyFormDTO workCommentReplyFormDTO){ |
|
|
|
return workIssueService.commentReplyList(workCommentReplyFormDTO); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|