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.
92 lines
2.1 KiB
92 lines
2.1 KiB
<?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\work;
|
|
|
|
|
|
use crmeb\basic\BaseModel;
|
|
use crmeb\traits\ModelTrait;
|
|
use think\Model;
|
|
use think\model\relation\HasMany;
|
|
use think\model\relation\HasOne;
|
|
|
|
/**
|
|
* 企业微信客户跟踪
|
|
* Class WorkClientFollow
|
|
* @package app\model\work
|
|
*/
|
|
class WorkClientFollow extends BaseModel
|
|
{
|
|
use ModelTrait;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $name = 'work_client_follow';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $key = 'id';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $autoWriteTimestamp = 'int';
|
|
|
|
/**
|
|
* @return HasOne
|
|
*/
|
|
public function client()
|
|
{
|
|
return $this->hasOne(WorkClient::class, 'id', 'client_id');
|
|
}
|
|
|
|
/**
|
|
* @return HasMany
|
|
*/
|
|
public function tags()
|
|
{
|
|
return $this->hasMany(WorkClientFollowTags::class, 'follow_id', 'id');
|
|
}
|
|
|
|
/**
|
|
* @return HasOne
|
|
*/
|
|
public function member()
|
|
{
|
|
return $this->hasOne(WorkMember::class, 'userid', 'userid');
|
|
}
|
|
|
|
/**
|
|
* @param $query
|
|
* @param $value
|
|
*/
|
|
public function searchClientIdAttr($query, $value)
|
|
{
|
|
if (is_array($value)) {
|
|
$query->whereIn('client_id', $value);
|
|
} else {
|
|
$query->where('client_id', $value);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 是否删除搜索器
|
|
* @param Model $query
|
|
* @param $value
|
|
* @param $data
|
|
*/
|
|
public function searchIsDelUserAttr($query, $value)
|
|
{
|
|
if ($value !== '') $query->where('is_del_user', $value);
|
|
}
|
|
}
|
|
|