|
@@ -63,6 +63,9 @@ public class WebController {
|
|
|
@Autowired
|
|
|
CommentService commentService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ MournService mournService;
|
|
|
+
|
|
|
|
|
|
|
|
|
@WebControllerLog(description = "门户网站-弹幕列表")
|
|
@@ -125,6 +128,12 @@ public class WebController {
|
|
|
return martyrService.detail(id);
|
|
|
}
|
|
|
|
|
|
+ @WebControllerLog(description = "门户网站-悼念列表")
|
|
|
+ @ApiOperation("门户网站-悼念列表")
|
|
|
+ @PostMapping("mourn/list")
|
|
|
+ public Result mournList(@RequestBody PageDateDto param) {
|
|
|
+ return mournService.search(param, 1);
|
|
|
+ }
|
|
|
|
|
|
|
|
|
@WebControllerLog(description = "门户网站-知识列表(详情)")
|