['name', 'is_show'], ]; } /** * @notes 设置支持排序字段 * @return array * @author heshihu * @date 2022/2/9 15:11 */ public function setSortFields(): array { return ['create_time' => 'create_time', 'id' => 'id']; } /** * @notes 设置默认排序 * @return array * @author heshihu * @date 2022/2/9 15:08 */ public function setDefaultOrder(): array { return ['sort' => 'desc', 'id' => 'desc']; } /** * @notes 获取语言包列表 * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author likeadmin * @date 2023/11/30 13:59 */ public function lists(): array { return Language::where($this->searchWhere) ->field(['id', 'name', 'name_loc','symbol','trans_symbol' , 'logo', 'precision', 'time_format', 'is_show', 'sort']) ->limit($this->limitOffset, $this->limitLength) ->order($this->sortOrder) ->select() ->toArray(); } /** * @notes 获取语言包数量 * @return int * @author likeadmin * @date 2023/11/30 13:59 */ public function count(): int { return Language::where($this->searchWhere)->count(); } }