Initial commit: queue workspace
Made-with: Cursor
This commit is contained in:
128
pro_v3.5.1/app/model/agent/AgentLevelTask.php
Normal file
128
pro_v3.5.1/app/model/agent/AgentLevelTask.php
Normal file
@@ -0,0 +1,128 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: CRMEB Team <admin@crmeb.com>
|
||||
// +----------------------------------------------------------------------
|
||||
declare (strict_types=1);
|
||||
|
||||
namespace app\model\agent;
|
||||
|
||||
use crmeb\basic\BaseModel;
|
||||
use crmeb\traits\ModelTrait;
|
||||
use think\Model;
|
||||
|
||||
/**
|
||||
* 分销员等级任务
|
||||
* Class AgentLevelTask
|
||||
* @package app\model\agent
|
||||
*/
|
||||
class AgentLevelTask extends BaseModel
|
||||
{
|
||||
|
||||
use ModelTrait;
|
||||
|
||||
/**
|
||||
* 数据表主键
|
||||
* @var string
|
||||
*/
|
||||
protected $pk = 'id';
|
||||
|
||||
/**
|
||||
* 模型名称
|
||||
* @var string
|
||||
*/
|
||||
protected $name = 'agent_level_task';
|
||||
|
||||
/**
|
||||
* 关联分销员等级
|
||||
* @return \think\model\relation\HasOne
|
||||
*/
|
||||
public function level()
|
||||
{
|
||||
return $this->hasOne(AgentLevel::class, 'id', 'level_id');
|
||||
}
|
||||
|
||||
/**
|
||||
* 关联分销员等级
|
||||
* @return \think\model\relation\HasOne
|
||||
*/
|
||||
public function levelGrade()
|
||||
{
|
||||
return $this->hasOne(AgentLevel::class, 'id', 'level_id')->field('id,grade')->where('status', 1)->where('is_del', 0)->bind(['grade']);
|
||||
}
|
||||
|
||||
/**
|
||||
* 关联任务完成记录
|
||||
* @return \think\model\relation\HasMany
|
||||
*/
|
||||
public function record()
|
||||
{
|
||||
return $this->hasMany(AgentLevelTaskRecord::class, 'task_id', 'id');
|
||||
}
|
||||
|
||||
/**
|
||||
* 关键词搜索器
|
||||
* @param $query Model
|
||||
* @param $value
|
||||
*/
|
||||
public function searchKeywordAttr($query, $value)
|
||||
{
|
||||
if ($value !== '') $query->where('id|name|desc', 'like', '%' . $value . '%');
|
||||
}
|
||||
|
||||
/**
|
||||
* 任务类型搜索器
|
||||
* @param $query Model
|
||||
* @param $value
|
||||
*/
|
||||
public function searchTypeAttr($query, $value)
|
||||
{
|
||||
if (is_array($value)) {
|
||||
$query->whereIn('type', $value);
|
||||
} else {
|
||||
if ($value !== '') $query->where('type', $value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 分销员等级搜索器
|
||||
* @param $query Model
|
||||
* @param $value
|
||||
*/
|
||||
public function searchLevelIdAttr($query, $value)
|
||||
{
|
||||
if (is_array($value)) {
|
||||
$query->whereIn('Level_id', $value);
|
||||
} else {
|
||||
if ($value !== '') $query->where('Level_id', $value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 状态搜索器
|
||||
* @param $query Model
|
||||
* @param $value
|
||||
*/
|
||||
public function searchStatusAttr($query, $value)
|
||||
{
|
||||
if ($value !== '') $query->where('status', $value);
|
||||
}
|
||||
|
||||
/**
|
||||
* 是否删除搜索器
|
||||
* @param $query Model
|
||||
* @param $value
|
||||
*/
|
||||
public function searchIsDelAttr($query, $value)
|
||||
{
|
||||
if ($value !== '') $query->where('is_del', $value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user