<?php namespace app\admin\model; use think\Model; class Comment extends \app\common\model\Comment { public function user() { return $this->belongsTo('User', 'user_id', 'id', [], 'LEFT')->setEagerlyType(0); } }