['title', 'content', 'type', 'version', 'dow_url', 'force', 'quiet'], ]; } /** * @notes 获取app更新列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/08/31 11:08 */ public function lists(): array { return AppUpdate::where($this->searchWhere) ->field(['id', 'title', 'content', 'type', 'version', 'dow_url', 'force', 'quiet', 'create_time', 'update_time']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() ->toArray(); } /** * @notes 获取app更新数量 * @return int * @author likeadmin * @date 2023/08/31 11:08 */ public function count(): int { return AppUpdate::where($this->searchWhere)->count(); } }