src/Entity/HttParsing.php line 20

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\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Component\Security\Core\User\UserInterface;
  8. use Symfony\Component\Validator\Constraints as Assert;
  9. use Symfony\Component\Validator\GroupSequenceProviderInterface;
  10. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  11. use Gedmo\Mapping\Annotation as Gedmo;
  12. /**
  13.  * @ORM\Entity(repositoryClass="App\Repository\HttParsingRepository")
  14.  * @ORM\Table(name="htt_parsing")
  15.  * @Gedmo\Loggable
  16.  */
  17. class HttParsing
  18. {
  19.     /**
  20.      * @var int
  21.      *
  22.      * @ORM\Id
  23.      * @ORM\GeneratedValue
  24.      * @ORM\Column(type="integer")
  25.      */
  26.     private $id;
  27.     /**
  28.      * @ORM\Column(type="datetime")
  29.      */
  30.     private $cutOffDate;
  31.     /**
  32.      * @ORM\Column(type="boolean", options={"default":false})
  33.      */
  34.     private $isPreview;
  35.     /**
  36.      * @ORM\Column(type="string", length=250, nullable=true)
  37.      * @Gedmo\Versioned
  38.      */
  39.     private $urlExcel;
  40.     // Linked table
  41.     // -------------------------------------------------------------------------
  42.     /**
  43.      * @ORM\ManyToOne(targetEntity="App\Entity\PoolProgram", inversedBy="httParsings")
  44.      * @ORM\JoinColumn(name="poolId", referencedColumnName="id")
  45.      */
  46.     private $pool;
  47.     /**
  48.      * @ORM\OneToMany(targetEntity="HttParsingValue", mappedBy="parsing")
  49.      */
  50.     private $parsingValues;
  51.     // Auto filled column
  52.     // -------------------------------------------------------------------------
  53.     /**
  54.      * @Gedmo\Timestampable(on="create")
  55.      * @ORM\Column(type="datetime")
  56.      */
  57.     private $createdOn;
  58.     /**
  59.      * @Gedmo\Timestampable(on="update")
  60.      * @ORM\Column(type="datetime")
  61.      */
  62.     private $updatedOn;
  63.     /**
  64.      * @Gedmo\Blameable(on="create")
  65.      * @ORM\ManyToOne(targetEntity="App\Entity\User")
  66.      * @ORM\JoinColumn(referencedColumnName="id", nullable=true)
  67.      * @Gedmo\Versioned
  68.      */
  69.     private $createdBy;
  70.     /**
  71.      * @Gedmo\Blameable(on="update")
  72.      * @ORM\ManyToOne(targetEntity="User")
  73.      * @ORM\JoinColumn(referencedColumnName="id", nullable=true)
  74.      * @Gedmo\Versioned
  75.      */
  76.     private $updatedBy;
  77.     public function __construct()
  78.     {
  79.         $this->parsingValues = new ArrayCollection();
  80.     }
  81.     // -------------------------------------------------------------------------
  82.     // Custom methods
  83.     public function __toString()
  84.     {
  85.         return $this->getPool()->__toString() . ' - ' $this->getCutOffDate()->format("d/m/Y");
  86.     }
  87.     // -------------------------------------------------------------------------
  88.     // Auto generated methods
  89.     public function getId(): ?int
  90.     {
  91.         return $this->id;
  92.     }
  93.     public function getCutOffDate(): ?\DateTimeInterface
  94.     {
  95.         return $this->cutOffDate;
  96.     }
  97.     public function setCutOffDate(\DateTimeInterface $cutOffDate): self
  98.     {
  99.         $this->cutOffDate $cutOffDate;
  100.         return $this;
  101.     }
  102.     public function getCreatedOn(): ?\DateTimeInterface
  103.     {
  104.         return $this->createdOn;
  105.     }
  106.     public function setCreatedOn(\DateTimeInterface $createdOn): self
  107.     {
  108.         $this->createdOn $createdOn;
  109.         return $this;
  110.     }
  111.     public function getUpdatedOn(): ?\DateTimeInterface
  112.     {
  113.         return $this->updatedOn;
  114.     }
  115.     public function setUpdatedOn(\DateTimeInterface $updatedOn): self
  116.     {
  117.         $this->updatedOn $updatedOn;
  118.         return $this;
  119.     }
  120.     public function getCreatedBy(): ?User
  121.     {
  122.         return $this->createdBy;
  123.     }
  124.     public function setCreatedBy(?User $createdBy): self
  125.     {
  126.         $this->createdBy $createdBy;
  127.         return $this;
  128.     }
  129.     public function getUpdatedBy(): ?User
  130.     {
  131.         return $this->updatedBy;
  132.     }
  133.     public function setUpdatedBy(?User $updatedBy): self
  134.     {
  135.         $this->updatedBy $updatedBy;
  136.         return $this;
  137.     }
  138.     /**
  139.      * @return Collection|HttParsingValue[]
  140.      */
  141.     public function getParsingValues(): Collection
  142.     {
  143.         return $this->parsingValues;
  144.     }
  145.     public function addParsingValue(HttParsingValue $parsingValue): self
  146.     {
  147.         if (!$this->parsingValues->contains($parsingValue)) {
  148.             $this->parsingValues[] = $parsingValue;
  149.             $parsingValue->setParsing($this);
  150.         }
  151.         return $this;
  152.     }
  153.     public function removeParsingValue(HttParsingValue $parsingValue): self
  154.     {
  155.         if ($this->parsingValues->removeElement($parsingValue)) {
  156.             // set the owning side to null (unless already changed)
  157.             if ($parsingValue->getParsing() === $this) {
  158.                 $parsingValue->setParsing(null);
  159.             }
  160.         }
  161.         return $this;
  162.     }
  163.     public function getIsPreview(): ?bool
  164.     {
  165.         return $this->isPreview;
  166.     }
  167.     public function setIsPreview(bool $isPreview): self
  168.     {
  169.         $this->isPreview $isPreview;
  170.         return $this;
  171.     }
  172.     public function getPool(): ?PoolProgram
  173.     {
  174.         return $this->pool;
  175.     }
  176.     public function setPool(?PoolProgram $pool): self
  177.     {
  178.         $this->pool $pool;
  179.         return $this;
  180.     }
  181.     public function isIsPreview(): ?bool
  182.     {
  183.         return $this->isPreview;
  184.     }
  185.     public function getUrlExcel(): ?string
  186.     {
  187.         return $this->urlExcel;
  188.     }
  189.     public function setUrlExcel(?string $urlExcel): self
  190.     {
  191.         $this->urlExcel $urlExcel;
  192.         return $this;
  193.     }
  194. }