src/Entity/RepportingTrimestrielle.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RepportingTrimestrielleRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassRepportingTrimestrielleRepository::class)]
  6. class RepportingTrimestrielle
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\ManyToOne(targetEntityAccountingFirm::class, inversedBy'repportingTrimestrielles')]
  13.     #[ORM\JoinColumn(nullablefalse)]
  14.     private $Cabinet;
  15.     #[ORM\Column(type'string'length255)]
  16.     private $visit;
  17.     #[ORM\Column(type'string'length255)]
  18.     private $mail;
  19.     #[ORM\Column(type'string'length255)]
  20.     private $appel;
  21.     #[ORM\Column(type'string'length255nullabletrue)]
  22.     private $remark;
  23.     #[ORM\Column(type'integer')]
  24.     private $trimestre;
  25.     #[ORM\Column(type'integer')]
  26.     private $annee;
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getCabinet(): ?AccountingFirm
  32.     {
  33.         return $this->Cabinet;
  34.     }
  35.     public function setCabinet(?AccountingFirm $Cabinet): self
  36.     {
  37.         $this->Cabinet $Cabinet;
  38.         return $this;
  39.     }
  40.     public function getVisit(): ?string
  41.     {
  42.         return $this->visit;
  43.     }
  44.     public function setVisit(string $visit): self
  45.     {
  46.         $this->visit $visit;
  47.         return $this;
  48.     }
  49.     public function getMail(): ?string
  50.     {
  51.         return $this->mail;
  52.     }
  53.     public function setMail(string $mail): self
  54.     {
  55.         $this->mail $mail;
  56.         return $this;
  57.     }
  58.     public function getAppel(): ?string
  59.     {
  60.         return $this->appel;
  61.     }
  62.     public function setAppel(string $appel): self
  63.     {
  64.         $this->appel $appel;
  65.         return $this;
  66.     }
  67.     public function getRemark(): ?string
  68.     {
  69.         return $this->remark;
  70.     }
  71.     public function setRemark(string $remark): self
  72.     {
  73.         $this->remark $remark;
  74.         return $this;
  75.     }
  76.     public function getTrimestre(): ?int
  77.     {
  78.         return $this->trimestre;
  79.     }
  80.     public function setTrimestre(int $trimestre): self
  81.     {
  82.         $this->trimestre $trimestre;
  83.         return $this;
  84.     }
  85.     public function getAnnee(): ?int
  86.     {
  87.         return $this->annee;
  88.     }
  89.     public function setAnnee(int $annee): self
  90.     {
  91.         $this->annee $annee;
  92.         return $this;
  93.     }
  94. }