Exemplo n.º 1
0
 public function detectionTypeList($where)
 {
     $info = array();
     $sql = "select * from qc_sample_detection_type {$where}";
     $query = $this->dbconn->query($sql);
     if ($query) {
         $info = $this->dbconn->fetch_array_all($query);
         return $info;
     } else {
         self::$errCode = "003";
         self::$errMsg = "IQC检测类型显示SQL语句错误!";
         return false;
     }
 }