企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
### 获取对象数组 **获取对象数组** **参数** $sqlId : 业务id ~~~ /** * 获取对象分页列表数组 */ function page_d($sqlId = '') { if (! isset ( $this->sql_arr )) { return $this->pageBySql ( "select * from " . $this->tbl_name . " c" ); } else { return $this->pageBySqlId ( $sqlId ); } } /** * 获取对象列表数组 */ function list_d($sqlId = '') { if (! isset ( $this->sql_arr )) { return $this->listBySql ( "select * from " . $this->tbl_name . " c" ); } else { return $this->listBySqlId ( $sqlId ); } } ~~~