src/Entity/TariffFraction.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\Common\Collections\ArrayCollection;
  4. use Doctrine\Common\Collections\Collection;
  5. use Doctrine\ORM\Mapping as ORM;
  6. /**
  7.  * TariffFraction
  8.  *
  9.  * @ORM\Table(name="tariff_fraction", uniqueConstraints={@ORM\UniqueConstraint(name="code", columns={"code"})})
  10.  * @ORM\Entity()
  11.  */
  12. class TariffFraction
  13. {
  14.     /**
  15.      * @var int
  16.      *
  17.      * @ORM\Column(name="id", type="integer", nullable=false)
  18.      * @ORM\Id
  19.      * @ORM\GeneratedValue(strategy="IDENTITY")
  20.      */
  21.     private $id;
  22.     /**
  23.      * @var string
  24.      *
  25.      * @ORM\Column(name="code", type="string", length=255, nullable=false)
  26.      */
  27.     private $code;
  28.     /**
  29.      * @var string|null
  30.      *
  31.      * @ORM\Column(name="description", type="text", length=65535, nullable=true)
  32.      */
  33.     private $description;
  34.     /**
  35.      * @ORM\ManyToOne(targetEntity=CubaCustomsItem::class, inversedBy="tariffFractions")
  36.      */
  37.     private $cubaCustomsItem;
  38.     /**
  39.      * @ORM\Column(type="date", nullable=true)
  40.      */
  41.     private $startValidityDate;
  42.     /**
  43.      * @ORM\Column(type="date", nullable=true)
  44.      */
  45.     private $endValidityDate;
  46.     /**
  47.      * @ORM\Column(type="string", length=255, nullable=true)
  48.      */
  49.     private $measureUnit;
  50.     public function getId(): ?int
  51.     {
  52.         return $this->id;
  53.     }
  54.     public function getCode(): ?string
  55.     {
  56.         return $this->code;
  57.     }
  58.     public function setCode(string $code): self
  59.     {
  60.         $this->code $code;
  61.         return $this;
  62.     }
  63.     public function getDescription(): ?string
  64.     {
  65.         return $this->description;
  66.     }
  67.     public function setDescription(?string $description): self
  68.     {
  69.         $this->description $description;
  70.         return $this;
  71.     }
  72.     public function __toString()
  73.     {
  74.         return $this->code ' (' $this->description ')';
  75.     }
  76.     public function getCubaCustomsItem(): ?CubaCustomsItem
  77.     {
  78.         return $this->cubaCustomsItem;
  79.     }
  80.     public function setCubaCustomsItem(?CubaCustomsItem $cubaCustomsItem): self
  81.     {
  82.         $this->cubaCustomsItem $cubaCustomsItem;
  83.         return $this;
  84.     }
  85.     public function getStartValidityDate(): ?\DateTimeInterface
  86.     {
  87.         return $this->startValidityDate;
  88.     }
  89.     public function setStartValidityDate(?\DateTimeInterface $startValidityDate): self
  90.     {
  91.         $this->startValidityDate $startValidityDate;
  92.         return $this;
  93.     }
  94.     public function getEndValidityDate(): ?\DateTimeInterface
  95.     {
  96.         return $this->endValidityDate;
  97.     }
  98.     public function setEndValidityDate(?\DateTimeInterface $endValidityDate): self
  99.     {
  100.         $this->endValidityDate $endValidityDate;
  101.         return $this;
  102.     }
  103.     public function getMeasureUnit(): ?string
  104.     {
  105.         return $this->measureUnit;
  106.     }
  107.     public function setMeasureUnit(?string $measureUnit): self
  108.     {
  109.         $this->measureUnit $measureUnit;
  110.         return $this;
  111.     }
  112. }