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 ); } } ~~~