You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123 lines
2.8 KiB
123 lines
2.8 KiB
3 months ago
|
<?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);
|
||
|
|
||
|
}
|
||
|
}
|