Exemplo n.º 1
0
 @Post("save")
 public String save(@Validation(errorPath = "a:errorCreateTel") Sms sms, Invocation inv)
     throws IllegalStateException, IOException {
   sms.setCreateTime(new Date());
   sms.setStatus(String.valueOf(0));
   telService.addTel(sms);
   return "r:/email_sms/emailSms/list";
 }