src/Entity/Lrib.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LribRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassLribRepository::class)]
  7. class Lrib
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length100nullable:true)]
  14.     private ?string $designation null;
  15.     #[ORM\Column(typeTypes::DATE_MUTABLEnullable:true)]
  16.     private ?\DateTimeInterface $date_debut null;
  17.     #[ORM\Column(typeTypes::DATE_MUTABLEnullable:true)]
  18.     private ?\DateTimeInterface $date_fin null;
  19.     #[ORM\Column(typeTypes::DATE_MUTABLEnullable:true)]
  20.     private ?\DateTimeInterface $created null;
  21.     #[ORM\ManyToOne(inversedBy'lribs')]
  22.     private ?LContract $contact_id null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $code null;
  25.     #[ORM\Column(nullabletrue)]
  26.     private ?bool $active true;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $swift null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $banque null;
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getDesignation(): ?string
  36.     {
  37.         return $this->designation;
  38.     }
  39.     public function setDesignation(string $Designation): self
  40.     {
  41.         $this->designation $Designation;
  42.         return $this;
  43.     }
  44.     public function getDateDebut(): ?\DateTimeInterface
  45.     {
  46.         return $this->date_debut;
  47.     }
  48.     public function setDateDebut(\DateTimeInterface $date_debut): self
  49.     {
  50.         $this->date_debut $date_debut;
  51.         return $this;
  52.     }
  53.     public function getDateFin(): ?\DateTimeInterface
  54.     {
  55.         return $this->date_fin;
  56.     }
  57.     public function setDateFin(\DateTimeInterface $date_fin): self
  58.     {
  59.         $this->date_fin $date_fin;
  60.         return $this;
  61.     }
  62.     public function getCreated(): ?\DateTimeInterface
  63.     {
  64.         return $this->created;
  65.     }
  66.     public function setCreated(\DateTimeInterface $created): self
  67.     {
  68.         $this->created $created;
  69.         return $this;
  70.     }
  71.     public function getContactId(): ?LContract
  72.     {
  73.         return $this->contact_id;
  74.     }
  75.     public function setContactId(?LContract $contact_id): self
  76.     {
  77.         $this->contact_id $contact_id;
  78.         return $this;
  79.     }
  80.     public function getCode(): ?string
  81.     {
  82.         return $this->code;
  83.     }
  84.     public function setCode(?string $code): static
  85.     {
  86.         $this->code $code;
  87.         return $this;
  88.     }
  89.   
  90.     public function isActive(): ?bool
  91.     {
  92.         return $this->active;
  93.     }
  94.     public function setActive(?bool $active): self
  95.     {
  96.         $this->active $active;
  97.         return $this;
  98.     }
  99.     public function getSwift(): ?string
  100.     {
  101.         return $this->swift;
  102.     }
  103.     public function setSwift(?string $swift): static
  104.     {
  105.         $this->swift $swift;
  106.         return $this;
  107.     }
  108.     public function getBanque(): ?string
  109.     {
  110.         return $this->banque;
  111.     }
  112.     public function setBanque(?string $banque): static
  113.     {
  114.         $this->banque $banque;
  115.         return $this;
  116.     }
  117. }