修改消息已读接口传参方式
This commit is contained in:
@@ -47,9 +47,9 @@ public class AppNoticeInfoController extends BaseController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@ApiOperation("通知已读")
|
@ApiOperation("通知已读")
|
||||||
@PostMapping("/read/noticeRead")
|
@PutMapping("/read/noticeRead/{id}")
|
||||||
@BussinessLog(title = "系统通知标记已读")
|
@BussinessLog(title = "通知标记已读")
|
||||||
public AjaxResult noticeRead(@RequestParam String id)
|
public AjaxResult noticeRead(@PathVariable String id)
|
||||||
{
|
{
|
||||||
if(StringUtils.isBlank(id)){
|
if(StringUtils.isBlank(id)){
|
||||||
return error("参数为空!");
|
return error("参数为空!");
|
||||||
|
|||||||
Reference in New Issue
Block a user