This commit is contained in:
chenbo 2024-02-27 14:15:07 +08:00
parent 53d2317c51
commit 9b3771af8a
2 changed files with 11 additions and 1 deletions

View File

@ -55,6 +55,7 @@ class TaskDetailLists extends BaseAdminDataLists implements ListsSearchInterface
public function lists(): array public function lists(): array
{ {
return TaskDetail::where($this->searchWhere) return TaskDetail::where($this->searchWhere)
->with(['taskTypeInfo', 'taskAllocation'])
->limit($this->limitOffset, $this->limitLength) ->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc']) ->order(['id' => 'desc'])
->select() ->select()

View File

@ -16,6 +16,7 @@ namespace app\common\model;
use app\common\model\BaseModel; use app\common\model\BaseModel;
use app\common\model\task\TaskType;
use think\model\concern\SoftDelete; use think\model\concern\SoftDelete;
@ -30,5 +31,13 @@ class TaskDetail extends BaseModel
protected $name = 'task_detail'; protected $name = 'task_detail';
protected $deleteTime = 'delete_time'; 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');
}
} }