['article_id', 'state', 'comment_user'], ]; } /** * @notes 获取评论列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2024/02/18 15:03 */ public function lists(): array { return ArticleComment::where($this->searchWhere) ->with(['title']) ->field(['id', 'pre_id', 'content', 'article_id', 'state', 'comment_user']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); } /** * @notes 获取评论数量 * @return int * @author likeadmin * @date 2024/02/18 15:03 */ public function count(): int { return ArticleComment::where($this->searchWhere)->count(); } }