update
This commit is contained in:
parent
53d2317c51
commit
9b3771af8a
@ -55,6 +55,7 @@ class TaskDetailLists extends BaseAdminDataLists implements ListsSearchInterface
|
||||
public function lists(): array
|
||||
{
|
||||
return TaskDetail::where($this->searchWhere)
|
||||
->with(['taskTypeInfo', 'taskAllocation'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()
|
||||
|
@ -16,6 +16,7 @@ namespace app\common\model;
|
||||
|
||||
|
||||
use app\common\model\BaseModel;
|
||||
use app\common\model\task\TaskType;
|
||||
use think\model\concern\SoftDelete;
|
||||
|
||||
|
||||
@ -30,5 +31,13 @@ class TaskDetail extends BaseModel
|
||||
protected $name = 'task_detail';
|
||||
protected $deleteTime = 'delete_time';
|
||||
|
||||
|
||||
public function taskTypeInfo()
|
||||
{
|
||||
return $this->hasOne(TaskType::class, 'id', 'task_type_id');
|
||||
}
|
||||
|
||||
public function taskAllocation()
|
||||
{
|
||||
return $this->hasOne(TaskType::class, 'id', 'task_allocation_id');
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user