123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?php
- declare (strict_types=1);
- namespace app\model\agent;
- use crmeb\basic\BaseModel;
- use crmeb\traits\ModelTrait;
- use think\Model;
- class AgentLevelTask extends BaseModel
- {
- use ModelTrait;
-
- protected $pk = 'id';
-
- protected $name = 'agent_level_task';
-
- public function level()
- {
- return $this->hasOne(AgentLevel::class, 'id', 'level_id');
- }
-
- public function record()
- {
- return $this->hasMany(AgentLevelTaskRecord::class, 'task_id', 'id');
- }
-
- public function searchKeywordAttr($query, $value)
- {
- if ($value !== '') $query->where('id|name|desc', 'like', '%' . $value . '%');
- }
-
- public function searchTypeAttr($query, $value)
- {
- if (is_array($value)) {
- $query->whereIn('type', $value);
- } else {
- if ($value !== '') $query->where('type', $value);
- }
- }
-
- public function searchLevelIdAttr($query, $value)
- {
- if (is_array($value)) {
- $query->whereIn('Level_id', $value);
- } else {
- if ($value !== '') $query->where('Level_id', $value);
- }
- }
-
- public function searchStatusAttr($query, $value)
- {
- if ($value !== '') $query->where('status', $value);
- }
-
- public function searchIsDelAttr($query, $value)
- {
- if ($value !== '') $query->where('is_del', $value);
- }
- }
|