/**
  * jqgrid公共删除,可多值删除
  * @param dao $dao
  * @param array $condtions
  */
 protected function del($dao, $conditions)
 {
     if (empty($conditions)) {
         return false;
     }
     if ($dao->deleteAll($conditions, false)) {
         return true;
     } else {
         return false;
     }
 }