* @date 2020/7/8 15:27 * * @return \think\model\relation\BelongsTo */ public function user() { return $this->belongsTo('Users','user_id','id'); } /** * 关联产品 * * @author 许祖兴 < zuxing.xu@lettered.cn> * @date 2020/7/8 15:27 * * @return \think\model\relation\BelongsTo */ public function goods() { return $this->belongsTo('Goods','goods_id','id'); } }