src/Entity/Reunions.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Reunions
  6.  *
  7.  * @ORM\Table(name="reunions", uniqueConstraints={@ORM\UniqueConstraint(name="id_fn_date_hippo_UNIQUE", columns={"id_fn_date_hippo"})}, indexes={@ORM\Index(name="idx_id_fn_date_hippo", columns={"id_fn_date_hippo"})})
  8.  * @ORM\Entity(repositoryClass="App\Repository\ReunionsRepository")*/
  9. class Reunions
  10. {
  11.     /**
  12.      * @var int
  13.      *
  14.      * @ORM\Column(name="id_reunion", type="integer", nullable=false)
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue(strategy="IDENTITY")
  17.      */
  18.     private $idReunion;
  19.     /**
  20.      * @var \DateTime|null
  21.      *
  22.      * @ORM\Column(name="date", type="datetime", nullable=true)
  23.      */
  24.     private $date;
  25.     /**
  26.      * @var string|null
  27.      *
  28.      * @ORM\Column(name="hippodrome", type="string", length=71, nullable=true)
  29.      */
  30.     private $hippodrome;
  31.     /**
  32.      * @var string|null
  33.      *
  34.      * @ORM\Column(name="pays", type="string", length=30, nullable=true)
  35.      */
  36.     private $pays;
  37.     /**
  38.      * @var int|null
  39.      *
  40.      * @ORM\Column(name="numero_reunion", type="integer", nullable=true)
  41.      */
  42.     private $numeroReunion;
  43.     /**
  44.      * @var string|null
  45.      *
  46.      * @ORM\Column(name="id_fn_date_hippo", type="string", length=59, nullable=true)
  47.      */
  48.     private $idFnDateHippo;
  49.     /**
  50.      * @var string|null
  51.      *
  52.      * @ORM\Column(name="hash_id_fn_date_hippo", type="string", length=70, nullable=true)
  53.      */
  54.     private $hashIdFnDateHippo;
  55.     /**
  56.      * @var \DateTime|null
  57.      *
  58.      * @ORM\Column(name="date_creation", type="datetime", nullable=true)
  59.      */
  60.     private $dateCreation;
  61.     /**
  62.      * @var \DateTime|null
  63.      *
  64.      * @ORM\Column(name="date_modification", type="datetime", nullable=true)
  65.      */
  66.     private $dateModification;
  67.     public function getIdReunion(): ?int
  68.     {
  69.         return $this->idReunion;
  70.     }
  71.     public function getDate(): ?\DateTimeInterface
  72.     {
  73.         return $this->date;
  74.     }
  75.     public function setDate(?\DateTimeInterface $date): self
  76.     {
  77.         $this->date $date;
  78.         return $this;
  79.     }
  80.     public function getHippodrome(): ?string
  81.     {
  82.         return $this->hippodrome;
  83.     }
  84.     public function setHippodrome(?string $hippodrome): self
  85.     {
  86.         $this->hippodrome $hippodrome;
  87.         return $this;
  88.     }
  89.     public function getPays(): ?string
  90.     {
  91.         return $this->pays;
  92.     }
  93.     public function setPays(?string $pays): self
  94.     {
  95.         $this->pays $pays;
  96.         return $this;
  97.     }
  98.     public function getNumeroReunion(): ?int
  99.     {
  100.         return $this->numeroReunion;
  101.     }
  102.     public function setNumeroReunion(?int $numeroReunion): self
  103.     {
  104.         $this->numeroReunion $numeroReunion;
  105.         return $this;
  106.     }
  107.     public function getIdFnDateHippo(): ?string
  108.     {
  109.         return $this->idFnDateHippo;
  110.     }
  111.     public function setIdFnDateHippo(?string $idFnDateHippo): self
  112.     {
  113.         $this->idFnDateHippo $idFnDateHippo;
  114.         return $this;
  115.     }
  116.     public function getHashIdFnDateHippo(): ?string
  117.     {
  118.         return $this->hashIdFnDateHippo;
  119.     }
  120.     public function setHashIdFnDateHippo(?string $hashIdFnDateHippo): self
  121.     {
  122.         $this->hashIdFnDateHippo $hashIdFnDateHippo;
  123.         return $this;
  124.     }
  125.     public function getDateCreation(): ?\DateTimeInterface
  126.     {
  127.         return $this->dateCreation;
  128.     }
  129.     public function setDateCreation(?\DateTimeInterface $dateCreation): self
  130.     {
  131.         $this->dateCreation $dateCreation;
  132.         return $this;
  133.     }
  134.     public function getDateModification(): ?\DateTimeInterface
  135.     {
  136.         return $this->dateModification;
  137.     }
  138.     public function setDateModification(?\DateTimeInterface $dateModification): self
  139.     {
  140.         $this->dateModification $dateModification;
  141.         return $this;
  142.     }
  143. }