multi-store/app/admin/lists/app_update/AppUpdateLists.php
2024-05-30 21:37:55 +08:00

65 lines
1.5 KiB
PHP

<?php
namespace app\admin\lists\app_update;
use app\admin\lists\BaseAdminDataLists;
use app\common\model\app_update\AppUpdate;
use app\common\lists\ListsSearchInterface;
/**
* 收银app更新列表
* Class AppUpdateLists
* @package app\admin\listsapp_update
*/
class AppUpdateLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/05/30 10:25
*/
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 2024/05/30 10:25
*/
public function lists(): array
{
return AppUpdate::where($this->searchWhere)
->field(['id', 'title', 'content', 'type', 'version', 'dow_url', 'force', 'quiet'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()
->toArray();
}
/**
* @notes 获取收银app更新数量
* @return int
* @author likeadmin
* @date 2024/05/30 10:25
*/
public function count(): int
{
return AppUpdate::where($this->searchWhere)->count();
}
}