* @date 2020/7/20 10:19 * * @return \think\model\relation\BelongsTo */ public function invite() { return $this->belongsTo('Users','from_id','id'); } /** * * @author 许祖兴 < zuxing.xu@lettered.cn> * @date 2020/7/20 10:19 * * @return \think\model\relation\BelongsTo */ public function user() { return $this->belongsTo('Users','invite_id','id'); } }