💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
### 获取对象数组 **获取对象数组** **参数** $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 ); } } ~~~