// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\store\model\bargain; use app\common\model\bargain\TaskHelp as TaskHelpModel; /** * 砍价任务助力记录模型 * Class TaskHelp * @package app\store\model\bargain */ class TaskHelp extends TaskHelpModel { /** * 获取列表数据 * @param int $taskId * @return \think\Paginator * @throws \think\db\exception\DbException */ public function getList(int $taskId): \think\Paginator { // 砍价任务助力记录 return $this->with(['user.avatar']) ->where('task_id', '=', $taskId) ->order(['create_time' => 'desc']) ->paginate(); } }