Example #1
0
 /**
  * 删除
  *
  * @param $data
  * @return boolean
  */
 public function del($data)
 {
     try {
         $dao = new AutoNoDao();
         if ($data["id"] != '') {
             $dao->deleteById($data["id"]);
         }
     } catch (Exception $e) {
         system_out("AutoNoTypeSetup exception:" . $e);
         return false;
     }
     return true;
 }