<?php namespace app\common\model; use think\Model; // 心选礼物定制订单 class GiftOrder extends Model { public function goods() { return $this->belongsTo('StoreGoods','goods_id')->field('id,name,cover'); } }