52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\model\user;
|
||
|
||
use crmeb\basic\BaseModel;
|
||
use crmeb\traits\ModelTrait;
|
||
use think\Model;
|
||
|
||
/**
|
||
* Class UserLabelRelation
|
||
* @package app\model\user
|
||
*/
|
||
class UserLabelRelation extends BaseModel
|
||
{
|
||
use ModelTrait;
|
||
|
||
/**
|
||
* 模型名称
|
||
* @var string
|
||
*/
|
||
protected $name = 'user_label_relation';
|
||
|
||
/**
|
||
* @return \think\model\relation\HasOne
|
||
*/
|
||
public function label()
|
||
{
|
||
return $this->hasOne(UserLabel::class, 'id', 'label_id')->bind([
|
||
'label_name' => 'label_name'
|
||
]);
|
||
}
|
||
|
||
/**
|
||
* uid搜索器
|
||
* @param Model $query
|
||
* @param $value
|
||
*/
|
||
public function searchUidAttr($query, $value)
|
||
{
|
||
$query->whereIn('uid', $value);
|
||
}
|
||
}
|