Esempio n. 1
0
 @Override
 public String delete() {
   logger.debug("Employee delete.....");
   // id对应的记录不存在已经在Dao作了处理
   if (id != null) {
     employeeService.delete(id);
   }
   actionJsonResult = new ActionJsonResult(true, null);
   return JSONLIST; // 删除和保存都不需要跳转页面,如需跳转用RELOAD
 }