dever 6 years ago
parent
commit
ea28f08156
2 changed files with 22 additions and 22 deletions
  1. 0 22
      KIF/Dao/AbstractDao.class.php
  2. 22 0
      KIF/Dao/DBAgileDev.class.php

+ 0 - 22
KIF/Dao/AbstractDao.class.php

@@ -281,28 +281,6 @@ abstract class AbstractDao {
         return array_pop($result);
     }
 
-    public function fetchAll($condition = null, $limit = 10, $order = null, $selectCols = '*') {
-        $result = self::findBy($condition, null, $limit, $selectCols, $order);
-        if (!$result) {
-            return false;
-        }
-
-        foreach ($result as & $tmpV) {
-            $tmpExtend = array();
-            $tmpExtend = unserialize($tmpV['extend']);
-            unset($tmpV['extend']);
-
-            # 将存在扩展字段里的信息提出来
-            if (is_array($tmpExtend)) foreach ($tmpExtend as $tmpKK => $tmpVV) {
-                if (!in_array($tmpKK, $this->real_field)) {
-                    $tmpV[$tmpKK] = $tmpVV;
-                }
-            }
-        }
-
-        return $result;
-    }
-
     /**
      * 获取所有
      * @param string $order 排序方式。默认以主键倒序;有效的格式:"create_time desc"

+ 22 - 0
KIF/Dao/DBAgileDev.class.php

@@ -261,6 +261,28 @@ abstract class DBAgileDev extends AbstractDao {
 		return $ids;
     }
 
+    public function fetchAll($condition = null, $limit = 10, $order = null, $selectCols = '*') {
+        $result = parent::findBy($condition, null, $limit, $selectCols, $order);
+        if (!$result) {
+            return false;
+        }
+
+        foreach ($result as & $tmpV) {
+            $tmpExtend = array();
+            $tmpExtend = unserialize($tmpV['extend']);
+            unset($tmpV['extend']);
+
+            # 将存在扩展字段里的信息提出来
+            if (is_array($tmpExtend)) foreach ($tmpExtend as $tmpKK => $tmpVV) {
+                if (!in_array($tmpKK, $this->real_field)) {
+                    $tmpV[$tmpKK] = $tmpVV;
+                }
+            }
+        }
+
+        return $result;
+    }
+
 	/**
      *
      * 获取指定时间$update_time后的最新id集