2026-03-21 02:55:24 +08:00
|
|
|
<?php
|
|
|
|
|
// +----------------------------------------------------------------------
|
2026-03-29 11:22:52 +08:00
|
|
|
// | Author: ScottPan Team
|
2026-03-21 02:55:24 +08:00
|
|
|
// +----------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace app\model\work;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
use app\model\user\User;
|
|
|
|
|
use crmeb\basic\BaseModel;
|
|
|
|
|
use crmeb\traits\ModelTrait;
|
|
|
|
|
use think\model\concern\SoftDelete;
|
|
|
|
|
use think\model\relation\HasMany;
|
|
|
|
|
use think\model\relation\HasManyThrough;
|
|
|
|
|
use think\model\relation\HasOne;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 企业微信客户
|
|
|
|
|
* Class WorkClient
|
|
|
|
|
* @package app\model\work
|
|
|
|
|
*/
|
|
|
|
|
class WorkClient extends BaseModel
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
use ModelTrait;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $name = 'work_client';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $key = 'id';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @var string
|
|
|
|
|
*/
|
|
|
|
|
protected $autoWriteTimestamp = 'int';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return HasMany
|
|
|
|
|
*/
|
|
|
|
|
public function follow(): HasMany
|
|
|
|
|
{
|
|
|
|
|
return $this->hasMany(WorkClientFollow::class, 'client_id', 'id');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return HasOne
|
|
|
|
|
*/
|
|
|
|
|
public function followOne(): HasOne
|
|
|
|
|
{
|
|
|
|
|
return $this->hasOne(WorkClientFollow::class, 'client_id', 'id')->order('createtime', 'asc');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 商城用户关联
|
|
|
|
|
* @return HasOne
|
|
|
|
|
*/
|
|
|
|
|
public function user(): HasOne
|
|
|
|
|
{
|
|
|
|
|
return $this->hasOne(User::class, 'uid', 'uid');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function chat(): HasOne
|
|
|
|
|
{
|
|
|
|
|
return $this->hasOne(WorkGroupChatMember::class, 'userid', 'external_userid')->where('type', 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return HasManyThrough
|
|
|
|
|
*/
|
|
|
|
|
public function tags(): HasManyThrough
|
|
|
|
|
{
|
|
|
|
|
return $this->hasManyThrough(
|
|
|
|
|
WorkClientFollowTags::class,
|
|
|
|
|
WorkClientFollow::class,
|
|
|
|
|
'follow_id',
|
|
|
|
|
'id',
|
|
|
|
|
'client_id',
|
|
|
|
|
'id'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $query
|
|
|
|
|
* @param $value
|
|
|
|
|
*/
|
|
|
|
|
public function searchExternalUseridAttr($query, $value)
|
|
|
|
|
{
|
|
|
|
|
if (is_array($value)) {
|
|
|
|
|
$query->whereIn('external_userid', $value);
|
|
|
|
|
} else {
|
|
|
|
|
$query->where('external_userid', $value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $query
|
|
|
|
|
* @param $value
|
|
|
|
|
*/
|
|
|
|
|
public function searchCorpIdAttr($query, $value)
|
|
|
|
|
{
|
|
|
|
|
$query->where('corp_id', $value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param $query
|
|
|
|
|
* @param $value
|
|
|
|
|
*/
|
|
|
|
|
public function searchUidAttr($query, $value)
|
|
|
|
|
{
|
|
|
|
|
if (is_array($value)) {
|
|
|
|
|
$query->whereIn('uid', $value);
|
|
|
|
|
} else {
|
|
|
|
|
$query->where('uid', $value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|