60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
namespace app\adminapi\lists;
|
|
|
|
use app\common\model\AppUpdate;
|
|
use app\common\lists\ListsSearchInterface;
|
|
|
|
/**
|
|
* app更新列表
|
|
* Class AppUpdateLists
|
|
* @package app\adminapi\lists
|
|
*/
|
|
class AppUpdateLists extends BaseAdminDataLists implements ListsSearchInterface
|
|
{
|
|
|
|
/**
|
|
* @notes 设置搜索条件
|
|
* @return \string[][]
|
|
* @author likeadmin
|
|
* @date 2023/08/31 11:08
|
|
*/
|
|
public function setSearch(): array
|
|
{
|
|
return [
|
|
'=' => ['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();
|
|
}
|
|
|
|
} |