erp/app/admin/lists/goods/GoodsLabelLists.php
2024-04-27 11:41:34 +08:00

65 lines
1.4 KiB
PHP

<?php
namespace app\admin\lists\goods;
use app\admin\lists\BaseAdminDataLists;
use app\common\model\goods\GoodsLabel;
use app\common\lists\ListsSearchInterface;
/**
* 商品标签列表
* Class GoodsLabelLists
* @package app\admin\listsgoods
*/
class GoodsLabelLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author likeadmin
* @date 2024/04/27 09:23
*/
public function setSearch(): array
{
return [
'=' => ['name'],
];
}
/**
* @notes 获取商品标签列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author likeadmin
* @date 2024/04/27 09:23
*/
public function lists(): array
{
return GoodsLabel::where($this->searchWhere)
->field(['id', 'name'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()
->toArray();
}
/**
* @notes 获取商品标签数量
* @return int
* @author likeadmin
* @date 2024/04/27 09:23
*/
public function count(): int
{
return GoodsLabel::where($this->searchWhere)->count();
}
}