123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <?php
- namespace app\dao\store;
- use app\dao\BaseDao;
- use app\model\store\SystemStoreStaff;
- class SystemStoreStaffDao extends BaseDao
- {
-
- protected function setModel(): string
- {
- return SystemStoreStaff::class;
- }
-
- public function getWhere()
- {
- return $this->getModel();
- }
-
- public function search(array $where = [])
- {
- return parent::search($where)->when(isset($where['keyword']) && $where['keyword'], function ($query) use ($where) {
- if (!isset($where['field_key']) || $where['field_key'] == '') {
- $query->whereLike('id|uid|staff_name|phone', '%' . $where['keyword'] . '%');
- } else {
- $query->where($where['field_key'], $where['keyword']);
- }
- });
- }
-
- public function getStoreAdminList(array $where, int $page = 0, int $limit = 0, array $with = ['user'])
- {
- return $this->search($where)->when($with, function ($query) use ($with) {
- $query->with($with);
- })->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->order('add_time DESC')->select()->toArray();
- }
-
- public function getStoreStaffList(array $where, string $field = '*', int $page = 0, int $limit = 0, array $with = ['store', 'user'])
- {
- return $this->search($where)->field($field)->when($with, function ($query) use ($with) {
- $query->with(array_merge($with, ['store', 'user']));
- })->when($page && $limit, function ($query) use ($page, $limit) {
- $query->page($page, $limit);
- })->when(isset($where['notId']), function ($query) use ($where) {
- $query->where('id', '<>', $where['notId']);
- })->when(isset($where['store_id']), function ($query) use ($where) {
- $query->where('store_id', $where['store_id']);
- })->order('add_time DESC')->select()->toArray();
- }
-
- public function getSelectList(array $where)
- {
- return $this->search($where)->field('id,staff_name')->select()->toArray();
- }
-
- public function cancelUserDel(int $uid)
- {
- return $this->getModel()->where('uid', $uid)->where('level', '>', 0)->update(['is_del' => 1]);
- }
- }
|