* @date 2020/7/3 9:14 * * @return \think\model\relation\BelongsTo */ public function user() { return $this->belongsTo('Users','user_id','id'); } /** * * @author 许祖兴 < zuxing.xu@lettered.cn> * @date 2020/7/3 9:14 * * @return \think\model\relation\BelongsTo */ public function seller() { return $this->belongsTo('Seller','seller_id','id'); } /** * * @author 许祖兴 < zuxing.xu@lettered.cn> * @date 2020/7/3 9:14 * * @return \think\model\relation\BelongsTo */ public function order() { return $this->belongsTo('GoodsOrder','order_id','id'); } }