src/Entity/LmatriculationCoti.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LmatriculationCotiRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassLmatriculationCotiRepository::class)]
  7. class LmatriculationCoti
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne]
  14.     private ?PtypeCoti $type_id null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $Designation null;
  17.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  18.     private ?\DateTime $date_affiliation null;
  19.     #[ORM\Column]
  20.     private ?int $active null;
  21.     #[ORM\ManyToOne(inversedBy'lmatriculationcotis')]
  22.     private ?LContract $contract_id null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $code null;
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getTypeId(): ?PtypeCoti
  30.     {
  31.         return $this->type_id;
  32.     }
  33.     public function setTypeId(?PtypeCoti $type_id): self
  34.     {
  35.         $this->type_id $type_id;
  36.         return $this;
  37.     }
  38.     public function getDesignation(): ?string
  39.     {
  40.         return $this->Designation;
  41.     }
  42.     public function setDesignation(string $Designation): self
  43.     {
  44.         $this->Designation $Designation;
  45.         return $this;
  46.     }
  47.     public function getDateAffiliation(): ?\DateTime
  48.     {
  49.         return $this->date_affiliation;
  50.     }
  51.     public function setDateAffiliation(\DateTime $date_affiliation): self
  52.     {
  53.         $this->date_affiliation $date_affiliation;
  54.         return $this;
  55.     }
  56.     public function getActive(): ?int
  57.     {
  58.         return $this->active;
  59.     }
  60.     public function setActive(int $active): self
  61.     {
  62.         $this->active $active;
  63.         return $this;
  64.     }
  65.     public function getContractId(): ?LContract
  66.     {
  67.         return $this->contract_id;
  68.     }
  69.     public function setContractId(?LContract $contract_id): self
  70.     {
  71.         $this->contract_id $contract_id;
  72.         return $this;
  73.     }
  74.     public function getCode(): ?string
  75.     {
  76.         return $this->code;
  77.     }
  78.     public function setCode(?string $code): static
  79.     {
  80.         $this->code $code;
  81.         return $this;
  82.     }
  83. }