['user_id', 'type', 'copywriting_id'], // 其他搜索条件 ]; } public function lists(): array { $this->searchWhere[] = ['user_id', '=', $this->userId]; return SvCopywritingContent::where($this->searchWhere) ->order(['id' => 'desc']) ->limit($this->limitOffset, $this->limitLength) ->select() ->toArray(); } public function count(): int { return SvCopywritingContent::where($this->searchWhere)->count(); } }