右上角铃铛消息控制到账号

This commit is contained in:
19173159168
2025-09-09 22:30:52 +08:00
parent 75ed6551b5
commit 759f824cf8
2 changed files with 5 additions and 1 deletions

View File

@ -45,8 +45,11 @@ public class SysNoticeController extends BaseController
}
@RequiresPermissions("system:notice:view")
@GetMapping("/notice2")
public String notice2()
public String notice2(ModelMap mmap)
{
SysNotice notice = new SysNotice();
notice.setUserId(getSysUser().getUserId());
mmap.put("notice", notice);
return prefix + "/notice2";
}
/**