123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?php
- namespace app\model\user;
- use app\model\system\admin\SystemAdmin;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use think\model;
- class UserSpread extends BaseModel
- {
- use ModelTrait;
-
- protected $pk = 'id';
-
- protected $name = 'user_spread';
-
- public function user()
- {
- return $this->hasOne(User::class, 'uid', 'uid')->field('uid,nickname,avatar')->bind([
- 'nickname' => 'nickname',
- 'avatar' => 'avatar'
- ]);
- }
-
- public function spreadUser()
- {
- return $this->hasOne(User::class, 'uid', 'spread_uid')->field('uid,nickname,avatar')->bind([
- 'nickname' => 'nickname',
- 'avatar' => 'avatar'
- ]);
- }
-
- public function admin()
- {
- return $this->hasOne(SystemAdmin::class, 'id', 'admin_id')->field('id,real_name')->bind([
- 'real_name' => 'real_name'
- ]);
- }
-
- public function searchUidAttr($query, $value)
- {
- if (is_array($value))
- $query->whereIn('uid', $value);
- else
- $query->where('uid', $value);
- }
-
- public function searchStoreIdAttr($query, $value)
- {
- if ($value !== '') $query->where('store_id', $value);
- }
-
- public function searchStaffIdAttr($query, $value)
- {
- if ($value) $query->where('staff_id', $value);
- }
-
- public function searchSpreadUidAttr($query, $value)
- {
- if (is_array($value))
- $query->whereIn('spread_uid', $value);
- else
- $query->where('spread_uid', $value);
- }
- }
|