belongsTo(User::class, 'id'); } /** * 获取来源资金账户 */ public function fromFund() { return $this->belongsTo('App\Module\Fund\Models\FundModel', 'from_fund_id'); } /** * 获取目标资金账户 */ public function toFund() { return $this->belongsTo('App\Module\Fund\Models\FundModel', 'to_fund_id'); } }