thinkphp 查询问题

method not exist: think\db\Query-> goods 问题在哪?

goods不是Query的方法,猜你可能是用关联模型。但是在模型里面,没有写goods关联方法导致
在需要的关联模型里面,比如order Model类,写入以下关联关系

public function goods()
{
  return $this->belongsTo(Goods::class, 'goods_id');
}

问题可以描述在详细一点吗