- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
87 lines
1.7 KiB
PHP
87 lines
1.7 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
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(): HasOne
|
|
{
|
|
return $this->hasOne(WorkClient::class, 'id', 'client_id');
|
|
}
|
|
|
|
/**
|
|
* @return HasMany
|
|
*/
|
|
public function tags(): HasMany
|
|
{
|
|
return $this->hasMany(WorkClientFollowTags::class, 'follow_id', 'id');
|
|
}
|
|
|
|
/**
|
|
* @return HasOne
|
|
*/
|
|
public function member(): HasOne
|
|
{
|
|
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);
|
|
}
|
|
}
|