src/Entity/OtherContract.php line 18

Open in your IDE?
  1. <?php
  2. // src/Entity/OtherContract.php
  3. namespace App\Entity;
  4. use Doctrine\ORM\Mapping as ORM;
  5. use Symfony\Component\Validator\Constraints as Assert;
  6. use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
  7. use Symfony\Component\Security\Core\User\UserInterface;
  8. use Doctrine\Common\Collections\ArrayCollection;
  9. use Doctrine\Common\Collections\Collection;
  10. /**
  11.  * @ORM\Entity()
  12.  * @ORM\Table(name="69pixl_other_contract")
  13.  */
  14. class OtherContract
  15. {
  16.     /**
  17.      * @ORM\Id
  18.      * @ORM\Column(type="integer")
  19.      * @ORM\GeneratedValue(strategy="AUTO")
  20.      */
  21.     private $id;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     /**
  27.      * @ORM\Column(type="string", length=255, nullable=true)
  28.      */
  29.     private $organisme;
  30.     /**
  31.      * @ORM\Column(type="text", nullable=true)
  32.      */
  33.     private $adresse;
  34.     /**
  35.      * @ORM\Column(type="string", length=255, nullable=true)
  36.      */
  37.     private $numeroAdherent;
  38.     /**
  39.      * @ORM\Column(type="datetime", nullable=true)
  40.      */
  41.     private $dateAdhesion;
  42.     /**
  43.      * @ORM\Column(type="float", nullable=true)
  44.      */
  45.     private $montantAnnuel;
  46.     /**
  47.      * @var membership[]
  48.      * @ORM\ManyToOne(targetEntity="App\Entity\Ba", inversedBy="otherContracts")
  49.      */
  50.     protected $ba;
  51.     public function getOrganisme(): ?string
  52.     {
  53.         return $this->organisme;
  54.     }
  55.     public function setOrganisme(?string $organisme): self
  56.     {
  57.         $this->organisme $organisme;
  58.         return $this;
  59.     }
  60.     public function getAdresse(): ?string
  61.     {
  62.         return $this->adresse;
  63.     }
  64.     public function setAdresse(?string $adresse): self
  65.     {
  66.         $this->adresse $adresse;
  67.         return $this;
  68.     }
  69.     public function getNumeroAdherent(): ?string
  70.     {
  71.         return $this->numeroAdherent;
  72.     }
  73.     public function setNumeroAdherent(?string $numeroAdherent): self
  74.     {
  75.         $this->numeroAdherent $numeroAdherent;
  76.         return $this;
  77.     }
  78.     public function getDateAdhesion()
  79.     {
  80.         return $this->dateAdhesion;
  81.     }
  82.     public function setDateAdhesion($dateAdhesion)
  83.     {
  84.         $this->dateAdhesion $dateAdhesion;
  85.         return $this;
  86.     }
  87.     public function getMontantAnnuel(): ?float
  88.     {
  89.         return $this->montantAnnuel;
  90.     }
  91.     public function setMontantAnnuel(?float $montantAnnuel): self
  92.     {
  93.         $this->montantAnnuel $montantAnnuel;
  94.         return $this;
  95.     }
  96.     public function getBa(): ?Ba
  97.     {
  98.         return $this->ba;
  99.     }
  100.     public function setBa(?Ba $ba): self
  101.     {
  102.         $this->ba $ba;
  103.         return $this;
  104.     }
  105. }