src/Entity/EcoShippingfees.php line 9

Open in your IDE?
  1. <?php
  2. namespace Acme\SudcmsBundle\Entity;
  3. use Acme\SudcmsBundle\Repository\EcoShippingfeesRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassEcoShippingfeesRepository::class)]
  6. class EcoShippingfees {
  7.     #[ORM\Id]
  8.     #[ORM\GeneratedValue]
  9.     #[ORM\Column(type'integer')]
  10.     private $id;
  11.     #[ORM\Column(type'integer')]
  12.     private $carrier_id;
  13.     #[ORM\Column(type'integer')]
  14.     private $country_id;
  15.     #[ORM\Column(type'float')]
  16.     private $shipfees_amount_ttc;
  17.     #[ORM\Column(type'float')]
  18.     private $shipfees_tva;
  19.     #[ORM\Column(type'float'nullabletrue)]
  20.     private $shipfees_weight_max;
  21.     #[ORM\Column(type'integer'nullabletrue)]
  22.     private $shipfees_level;
  23.     public function getId(): ?int {
  24.         return $this->id;
  25.     }
  26.     public function getShipfeesAmountTtc(): ?float {
  27.         return $this->shipfees_amount_ttc;
  28.     }
  29.     public function setShipfeesAmountTtc(float $shipfees_amount_ttc): self {
  30.         $this->shipfees_amount_ttc $shipfees_amount_ttc;
  31.         return $this;
  32.     }
  33.     public function getShipfeesTva(): ?float {
  34.         return $this->shipfees_tva;
  35.     }
  36.     public function setShipfeesTva(float $shipfees_tva): self {
  37.         $this->shipfees_tva $shipfees_tva;
  38.         return $this;
  39.     }
  40.     public function getShipfeesWeightMax(): ?float {
  41.         return $this->shipfees_weight_max;
  42.     }
  43.     public function setShipfeesWeightMax(?float $shipfees_weight_max): self {
  44.         $this->shipfees_weight_max $shipfees_weight_max;
  45.         return $this;
  46.     }
  47.     public function getShipfeesLevel(): ?int {
  48.         return $this->shipfees_level;
  49.     }
  50.     public function setShipfeesLevel(?int $shipfees_level): self {
  51.         $this->shipfees_level $shipfees_level;
  52.         return $this;
  53.     }
  54.     public function getCarrierId(): ?int {
  55.         return $this->carrier_id;
  56.     }
  57.     public function setCarrierId(int $carrier_id): self {
  58.         $this->carrier_id $carrier_id;
  59.         return $this;
  60.     }
  61.     public function getCountryId(): ?int {
  62.         return $this->country_id;
  63.     }
  64.     public function setCountryId(int $country_id): self {
  65.         $this->country_id $country_id;
  66.         return $this;
  67.     }
  68. }