| | |
| | | package com.doumee.api.web; |
| | | |
| | | import com.doumee.config.annotation.LoginRequired; |
| | | import com.doumee.core.annotation.trace.Trace; |
| | | import com.doumee.core.model.ApiResponse; |
| | | import com.doumee.core.model.PageData; |
| | |
| | | |
| | | @Api(tags = "消息通知信业务") |
| | | @Trace(exclude = true) |
| | | @LoginRequired |
| | | @RestController |
| | | @RequestMapping("/web/notice") |
| | | @Slf4j |
| | |
| | | * @param pageWrap |
| | | * @return |
| | | */ |
| | | @LoginRequired |
| | | @ApiOperation(value = "查询用户通知", notes = "小程序端") |
| | | @PostMapping("/findNoticePage") |
| | | public ApiResponse<PageData<Notices>> findNoticePage(@RequestBody PageWrap<Notices> pageWrap){ |
| | |
| | | } |
| | | |
| | | |
| | | @LoginRequired |
| | | @ApiOperation(value = "查询通知详情", notes = "小程序端") |
| | | @GetMapping("/getNoticeDetail") |
| | | public ApiResponse<Notices> getNoticeDetail(@RequestParam Integer id){ |