Example #1
0
 @RequestMapping("/agency/updateNotice.do")
 public String updateNotice(String id, String title, String content) {
   Notice notice = service.getNotice(id);
   notice.setTitle(title);
   notice.setContent(content);
   service.updateNotice(notice);
   addMessage("修改公告成功!");
   return "redirect:" + getPrePath() + "listNotice.do";
 }