* [refac] replace dao with mao.

This commit is contained in:
liugang
2024-11-20 15:42:49 +08:00
committed by 朱金勇
parent b6cdac814b
commit c8bd87698c
+1 -1
View File
@@ -90,7 +90,7 @@ class model extends baseModel
$table = zget($this->config->objectTables, $moduleName, '');
if(empty($table)) return false;
return $this->dao->findById($objectID)->from($table)->fetch();
return $this->mao->findById($objectID)->from($table)->fetch();
}
/**