Files
huangjingfen/pro_v3.5.1/app/model/work/WorkDepartment.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

89 lines
2.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 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\relation\HasManyThrough;
/**
* 企业微信部门
* Class WorkDepartment
* @package app\model\work
*/
class WorkDepartment extends BaseModel
{
use ModelTrait;
/**
* @var string
*/
protected $name = 'work_department';
/**
* @var string
*/
protected $key = 'id';
/**
* @var string
*/
protected $autoWriteTimestamp = 'int';
/**
* 远程关联成员
* @return HasManyThrough
*/
public function member(): HasManyThrough
{
return $this->hasManyThrough(
WorkMember::class,
WorkMemberRelation::class, 'department', 'id', 'department_id', 'member_id');
}
/**
* @param $query
* @param $value
*/
public function searchMobileAttr($query, $value)
{
if (is_array($value)) {
$query->whereIn('mobile', $value);
} else {
$query->where('mobile', $value);
}
}
/**
* 企业微信id搜索
* @param $query
* @param $value
*/
public function searchCorpIdAttr($query, $value)
{
$query->where('corp_id', $value);
}
/**
* @param $query
* @param $value
*/
public function searchDepartmentIdAttr($query, $value)
{
if ('' !== $value) {
$query->where('department_id', $value);
}
}
}