时间:2021-07-01 10:21:17 帮助过:50人阅读
public function execute(PwThreadDataSource $ds) {
$this->_ds = $ds;
abstract class PwThreadDataSource {
protected $urlArgs = array();
/**
* 获取帖子统计数
*
* @return int
*/
abstract public function getTotal();
/**
* 获取帖子
*
* @param int $limit 获取条目
* @param int $offset 帖子起始偏移量
* @return array
*/
abstract public function getData($limit, $offset);