多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 获取对象数组 **获取对象数组** **参数** $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 ); } } ~~~