src/Entity/Beneficiaire.php line 19

Open in your IDE?
  1. <?php
  2. // src/Entity/Beneficiaire.php
  3. namespace App\Entity;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Symfony\Component\Validator\Constraints as Assert;
  7. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  8. use Symfony\Component\Security\Core\User\UserInterface;
  9. use Doctrine\Common\Collections\ArrayCollection;
  10. use Doctrine\Common\Collections\Collection;
  11. /**
  12.  * @ORM\Entity()
  13.  * @ORM\Table(name="69pixl_beneficiaire")
  14.  */
  15. class Beneficiaire
  16. {
  17.     /**
  18.      * @ORM\Id
  19.      * @ORM\Column(type="integer")
  20.      * @ORM\GeneratedValue(strategy="AUTO")
  21.      */
  22.     private $id;
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     /**
  28.      * @ORM\Column(type="string", length=255, nullable=true)
  29.      */
  30.     private $conditional;
  31.     /**
  32.      * @ORM\Column(type="string", length=255, nullable=true)
  33.      */
  34.     private $nomUsage;
  35.     /**
  36.      * @ORM\Column(type="string", length=255, nullable=true)
  37.      */
  38.     private $nom;
  39.     /**
  40.      * @ORM\Column(type="string", length=255, nullable=true)
  41.      */
  42.     private $prenom;
  43.     /**
  44.      * @ORM\Column(type="text", nullable=true)
  45.      */
  46.     private $adresse;
  47.     /**
  48.      * @ORM\Column(type="datetime", nullable=true)
  49.      */
  50.     private $dateDeNaissance;
  51.     /**
  52.      * @ORM\Column(type="string", length=255, nullable=true)
  53.      */
  54.     private $lieuDeNaissance;
  55.     /**
  56.      * @ORM\Column(type="string", length=255, nullable=true)
  57.      */
  58.     private $lienParente;
  59.     /**
  60.      * @ORM\Column(type="string", length=255, nullable=true)
  61.      */
  62.     private $priorite;
  63.     /**
  64.      * @ORM\Column(type="float", nullable=true)
  65.      */
  66.     private $part;
  67.     /**
  68.      * @var beneficiaires[]
  69.      * @ORM\ManyToOne(targetEntity="App\Entity\Ba", inversedBy="beneficiaires")
  70.      */
  71.     protected $ba;
  72.     public function getNom(): ?string
  73.     {
  74.         return $this->nom;
  75.     }
  76.     public function setNom(?string $nom): self
  77.     {
  78.         $this->nom $nom;
  79.         return $this;
  80.     }
  81.     public function getPrenom(): ?string
  82.     {
  83.         return $this->prenom;
  84.     }
  85.     public function setPrenom(?string $prenom): self
  86.     {
  87.         $this->prenom $prenom;
  88.         return $this;
  89.     }
  90.     public function getAdresse(): ?string
  91.     {
  92.         return $this->adresse;
  93.     }
  94.     public function setAdresse(?string $adresse): self
  95.     {
  96.         $this->adresse $adresse;
  97.         return $this;
  98.     }
  99.     public function getDateDeNaissance()
  100.     {
  101.         return $this->dateDeNaissance;
  102.     }
  103.     public function setDateDeNaissance($dateDeNaissance)
  104.     {
  105.         $this->dateDeNaissance $dateDeNaissance;
  106.         return $this;
  107.     }
  108.     public function getLieuDeNaissance(): ?string
  109.     {
  110.         return $this->lieuDeNaissance;
  111.     }
  112.     public function setLieuDeNaissance(?string $lieuDeNaissance): self
  113.     {
  114.         $this->lieuDeNaissance $lieuDeNaissance;
  115.         return $this;
  116.     }
  117.     public function getPriorite(): ?string
  118.     {
  119.         return $this->priorite;
  120.     }
  121.     public function setPriorite(?string $priorite): self
  122.     {
  123.         $this->priorite $priorite;
  124.         return $this;
  125.     }
  126.     public function getPart(): ?float
  127.     {
  128.         return $this->part;
  129.     }
  130.     public function setPart(?float $part): self
  131.     {
  132.         $this->part $part;
  133.         return $this;
  134.     }
  135.     public function getBa(): ?Ba
  136.     {
  137.         return $this->ba;
  138.     }
  139.     public function setBa(?Ba $ba): self
  140.     {
  141.         $this->ba $ba;
  142.         return $this;
  143.     }
  144.     public function getConditional(): ?string
  145.     {
  146.         return $this->conditional;
  147.     }
  148.     public function setConditional(?string $conditional): self
  149.     {
  150.         $this->conditional $conditional;
  151.         return $this;
  152.     }
  153.     public function getNomUsage(): ?string
  154.     {
  155.         return $this->nomUsage;
  156.     }
  157.     public function setNomUsage(?string $nomUsage): self
  158.     {
  159.         $this->nomUsage $nomUsage;
  160.         return $this;
  161.     }
  162.     public function getLienParente(): ?string
  163.     {
  164.         return $this->lienParente;
  165.     }
  166.     public function setLienParente(?string $lienParente): self
  167.     {
  168.         $this->lienParente $lienParente;
  169.         return $this;
  170.     }
  171. }