<?php
namespace Acme\SudcmsBundle\Entity;
use Acme\SudcmsBundle\Repository\EcoShippingfeesRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: EcoShippingfeesRepository::class)]
class EcoShippingfees {
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'integer')]
private $carrier_id;
#[ORM\Column(type: 'integer')]
private $country_id;
#[ORM\Column(type: 'float')]
private $shipfees_amount_ttc;
#[ORM\Column(type: 'float')]
private $shipfees_tva;
#[ORM\Column(type: 'float', nullable: true)]
private $shipfees_weight_max;
#[ORM\Column(type: 'integer', nullable: true)]
private $shipfees_level;
public function getId(): ?int {
return $this->id;
}
public function getShipfeesAmountTtc(): ?float {
return $this->shipfees_amount_ttc;
}
public function setShipfeesAmountTtc(float $shipfees_amount_ttc): self {
$this->shipfees_amount_ttc = $shipfees_amount_ttc;
return $this;
}
public function getShipfeesTva(): ?float {
return $this->shipfees_tva;
}
public function setShipfeesTva(float $shipfees_tva): self {
$this->shipfees_tva = $shipfees_tva;
return $this;
}
public function getShipfeesWeightMax(): ?float {
return $this->shipfees_weight_max;
}
public function setShipfeesWeightMax(?float $shipfees_weight_max): self {
$this->shipfees_weight_max = $shipfees_weight_max;
return $this;
}
public function getShipfeesLevel(): ?int {
return $this->shipfees_level;
}
public function setShipfeesLevel(?int $shipfees_level): self {
$this->shipfees_level = $shipfees_level;
return $this;
}
public function getCarrierId(): ?int {
return $this->carrier_id;
}
public function setCarrierId(int $carrier_id): self {
$this->carrier_id = $carrier_id;
return $this;
}
public function getCountryId(): ?int {
return $this->country_id;
}
public function setCountryId(int $country_id): self {
$this->country_id = $country_id;
return $this;
}
}