Exemplo n.º 1
0
 /** 查询邮件详情 */
 @RequestMapping("/user/sendEmailMsgInfo/{id}")
 public String querySendEmailMsgInfo(Model model, @PathVariable("id") Long id) {
   try {
     UserEmailMsg userEmailMsg = userEmailMsgService.queryUserEmailMsgById(id);
     model.addAttribute("userEmailMsg", userEmailMsg);
   } catch (Exception e) {
     logger.error("querySendMobleMsgInfo", e);
   }
   return sendEmailMsgInfo;
 }