123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\model\user;
- use app\model\system\admin\SystemAdmin;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use think\model;
- /**
- * Class UserSpread
- * @package app\model\user
- */
- class UserSpread extends BaseModel
- {
- use ModelTrait;
- /**
- * 数据表主键
- * @var string
- */
- protected $pk = 'id';
- /**
- * 模型名称
- * @var string
- */
- protected $name = 'user_spread';
- /**
- * 用户
- * @return model\relation\HasOne
- */
- public function user()
- {
- return $this->hasOne(User::class, 'uid', 'uid')->field('uid,nickname,avatar')->bind([
- 'nickname' => 'nickname',
- 'avatar' => 'avatar'
- ]);
- }
- /**
- * 推荐人
- * @return model\relation\HasOne
- */
- public function spreadUser()
- {
- return $this->hasOne(User::class, 'uid', 'spread_uid')->field('uid,nickname,avatar')->bind([
- 'nickname' => 'nickname',
- 'avatar' => 'avatar'
- ]);
- }
- /**
- * 管理员姓名
- * @return model\relation\HasOne
- */
- public function admin()
- {
- return $this->hasOne(SystemAdmin::class, 'id', 'admin_id')->field('id,real_name')->bind([
- 'real_name' => 'real_name'
- ]);
- }
- /**
- * 用户uid
- * @param Model $query
- * @param $value
- */
- public function searchUidAttr($query, $value)
- {
- if (is_array($value))
- $query->whereIn('uid', $value);
- else
- $query->where('uid', $value);
- }
- /**
- * 门店ID
- * @param $query
- * @param $value
- */
- public function searchStoreIdAttr($query, $value)
- {
- if ($value !== '') $query->where('store_id', $value);
- }
- /**
- * 门店店员ID
- * @param $query
- * @param $value
- */
- public function searchStaffIdAttr($query, $value)
- {
- if ($value) $query->where('staff_id', $value);
- }
- /**
- * 推广人uid
- * @param Model $query
- * @param $value
- */
- public function searchSpreadUidAttr($query, $value)
- {
- if (is_array($value))
- $query->whereIn('spread_uid', $value);
- else
- $query->where('spread_uid', $value);
- }
- }
|