mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-02-23 02:00:27 +00:00
45 lines
1.5 KiB
PHP
45 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace app\dao\product\product;
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\product\product\StoreProductProtection;
|
|
|
|
class StoreProductProtectionDao extends BaseDao
|
|
{
|
|
protected function setModel(): string
|
|
{
|
|
return StoreProductProtection::class;
|
|
}
|
|
|
|
public function conditionSearch($where)
|
|
{
|
|
return $this->getModel()
|
|
->when(isset($where['title']) && $where['title'] !== '', function ($query) use ($where) {
|
|
$query->whereLike('title', '%' . $where['title'] . '%');
|
|
})->when(isset($where['is_del']) && $where['is_del'] !== '', function ($query) use ($where) {
|
|
$query->where('is_del', $where['is_del']);
|
|
})->when(isset($where['status']) && $where['status'] !== '', function ($query) use ($where) {
|
|
$query->where('status', $where['status']);
|
|
});
|
|
}
|
|
|
|
public function protectionList(array $where = [], string $field = '*', int $page = 0, int $limit = 0)
|
|
{
|
|
return $this->conditionSearch($where)->field($field)
|
|
->when($page && $limit, function ($query) use ($page, $limit) {
|
|
$query->page($page, $limit);
|
|
})->order('sort DESC')->select()->toArray();
|
|
}
|
|
|
|
public function protectionCount(array $where = [])
|
|
{
|
|
return $this->conditionSearch($where)->count();
|
|
}
|
|
|
|
public function protectionListByIds($ids)
|
|
{
|
|
return $this->getModel()->whereIn('id', $ids)->select()->toArray();
|
|
}
|
|
}
|