belongsTo(User::class,'recom_id'); } /* * 用户信息 * */ public function user_info() { return $this->belongsTo(User::class,'user_id'); } /* *上级关联 * * */ public function agent_user() { return $this->belongsTo(User::class,'agent_id'); } }