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