|
@@ -35,16 +35,16 @@ public class MedNewsNoticeController {
|
|
@Autowired
|
|
@Autowired
|
|
private MedNewsNoticeFacade medNewsNoticeFacade;
|
|
private MedNewsNoticeFacade medNewsNoticeFacade;
|
|
|
|
|
|
- @ApiOperation(value = "消息通知-列表页查询[by:songxl]",
|
|
|
|
- notes = "消息通知-列表页查询")
|
|
|
|
|
|
+ @ApiOperation(value = "消息通知-获取未读消息数量[by:songxl]",
|
|
|
|
+ notes = "消息通知-获取未读消息数量")
|
|
@PostMapping("/getNewsCount")
|
|
@PostMapping("/getNewsCount")
|
|
public RespDTO<Map<String,Integer>> getNewsCount() {
|
|
public RespDTO<Map<String,Integer>> getNewsCount() {
|
|
return RespDTO.onSuc(medNewsNoticeFacade.getNewsCount());
|
|
return RespDTO.onSuc(medNewsNoticeFacade.getNewsCount());
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
- @ApiOperation(value = "消息通知--获取未读消息数量[by:songxl]",
|
|
|
|
- notes = "消息通知--获取未读消息数量")
|
|
|
|
|
|
+ @ApiOperation(value = "消息通知--列表页查询[by:songxl]",
|
|
|
|
+ notes = "消息通知--列表页查询")
|
|
@PostMapping("/newsNoticePage")
|
|
@PostMapping("/newsNoticePage")
|
|
public RespDTO<IPage<NewsNoticePageDTO>> newsNoticePage(@RequestBody NewsNoticePageVO newsNoticePageVO) {
|
|
public RespDTO<IPage<NewsNoticePageDTO>> newsNoticePage(@RequestBody NewsNoticePageVO newsNoticePageVO) {
|
|
return RespDTO.onSuc(medNewsNoticeFacade.newsNoticePage(newsNoticePageVO));
|
|
return RespDTO.onSuc(medNewsNoticeFacade.newsNoticePage(newsNoticePageVO));
|