OwnerPriceDirectLogisticCar.php 514 B

1234567891011121314151617181920
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class OwnerPriceDirectLogisticCar extends ModelExtended
  5. {
  6. protected $fillable = [
  7. "owner_price_direct_logistic_id", //直发车计费ID
  8. "car_type_id", //车型ID
  9. "base_fee", //起步费
  10. "additional_fee", //续费(元/KM)
  11. ];
  12. public function carType()
  13. { //车型
  14. return $this->hasOne(CarType::class,"id","car_type_id");
  15. }
  16. }