hasOne('App\Models\UserInfoModel','id','user_id'); } public function imgs() { return $this->hasMany('App\Models\DreamImages','dream_id'); } public function img() { return $this->hasOne('App\Models\DreamImages','dream_id','id'); } // 系统消息 public function systemInfo() { return $this->hasMany('App\Models\SystemInfoModel','other_id','id'); } }