src/Entity/CustomerAdvertisingAreaTierSettings.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerAdvertisingAreaTierSettingsRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassCustomerAdvertisingAreaTierSettingsRepository::class)]
  6. class CustomerAdvertisingAreaTierSettings
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(nullabletrue)]
  13.     private ?int $unitWidth null;
  14.     #[ORM\Column(nullabletrue)]
  15.     private ?int $unitHeight null;
  16.     #[ORM\Column]
  17.     private ?int $priceUnit null;
  18.     #[ORM\Column]
  19.     private ?int $setupPriceUnit null;
  20.     #[ORM\Column(nullabletrue)]
  21.     private ?int $minDuration null;
  22.     #[ORM\ManyToOne]
  23.     #[ORM\JoinColumn(name'fk_advertising_area_tier'nullablefalse)]
  24.     private ?AdvertisingAreaTier $advertisingAreaTier null;
  25.     #[ORM\ManyToOne(targetEntity'App\Entity\CustomerPackage'inversedBy'customerAdvertisingAreaTierSettings')]
  26.     #[ORM\JoinColumn(name'fk_customer_package'nullablefalse)]
  27.     private ?CustomerPackage $customerPackage null;
  28.     #[ORM\Column]
  29.     private ?int $tierLength null;
  30.     #[ORM\Column]
  31.     private ?int $tierWidth null;
  32.     #[ORM\Column(nullabletrue)]
  33.     private ?string $description null;
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getUnitWidth(): ?int
  39.     {
  40.         return $this->unitWidth;
  41.     }
  42.     public function setUnitWidth(?int $unitWidth): self
  43.     {
  44.         $this->unitWidth $unitWidth;
  45.         return $this;
  46.     }
  47.     public function getPriceUnit(): ?int
  48.     {
  49.         return $this->priceUnit;
  50.     }
  51.     public function setPriceUnit(int $priceUnit): self
  52.     {
  53.         $this->priceUnit $priceUnit;
  54.         return $this;
  55.     }
  56.     public function getSetupPriceUnit(): ?int
  57.     {
  58.         return $this->setupPriceUnit;
  59.     }
  60.     public function setSetupPriceUnit(int $setupPriceUnit): self
  61.     {
  62.         $this->setupPriceUnit $setupPriceUnit;
  63.         return $this;
  64.     }
  65.     public function getMinDuration(): ?int
  66.     {
  67.         return $this->minDuration;
  68.     }
  69.     public function setMinDuration(?int $minDuration): self
  70.     {
  71.         $this->minDuration $minDuration;
  72.         return $this;
  73.     }
  74.     public function getAdvertisingAreaTier(): ?AdvertisingAreaTier
  75.     {
  76.         return $this->advertisingAreaTier;
  77.     }
  78.     public function setAdvertisingAreaTier(?AdvertisingAreaTier $advertisingAreaTier): self
  79.     {
  80.         $this->advertisingAreaTier $advertisingAreaTier;
  81.         return $this;
  82.     }
  83.     public function getCustomerPackage(): ?CustomerPackage
  84.     {
  85.         return $this->customerPackage;
  86.     }
  87.     public function setCustomerPackage(?CustomerPackage $customerPackage): self
  88.     {
  89.         $this->customerPackage $customerPackage;
  90.         return $this;
  91.     }
  92.     public function getUnitHeight(): ?int
  93.     {
  94.         return $this->unitHeight;
  95.     }
  96.     public function setUnitHeight(?int $unitHeight): self
  97.     {
  98.         $this->unitHeight $unitHeight;
  99.         return $this;
  100.     }
  101.     public function getDescription(): ?string
  102.     {
  103.         return $this->description;
  104.     }
  105.     public function setDescription(?string $description): self
  106.     {
  107.         $this->description $description;
  108.         return $this;
  109.     }
  110.     public function getTierLength(): ?int
  111.     {
  112.         return $this->tierLength;
  113.     }
  114.     public function setTierLength(int $tierLength): self
  115.     {
  116.         $this->tierLength $tierLength;
  117.         return $this;
  118.     }
  119.     public function getTierWidth(): ?int
  120.     {
  121.         return $this->tierWidth;
  122.     }
  123.     public function setTierWidth(int $tierWidth): self
  124.     {
  125.         $this->tierWidth $tierWidth;
  126.         return $this;
  127.     }
  128. }