hasOne(Unit::class,"id","unit_id"); } public function province() { //省份 return $this->hasOne(Province::class,"id","province_id"); } public function city() { //城市 return $this->hasOne(City::class,"id","city_id"); } public function ownerPriceLogistic() { //物流 return $this->belongsTo(OwnerPriceLogistic::class,"owner_price_logistic_id","id"); } }