public JsonResult Del(String id) { if (entityDao.Del(id) > 0) { return(Success("删除成功!", null)); } else { return(Fail("删除失败!")); } }