src/Entity/StatEcoutePodcast.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\StatEcoutePodcastRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassStatEcoutePodcastRepository::class)]
  6. class StatEcoutePodcast
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private $id;
  12.     #[ORM\ManyToOne(targetEntityAccountingFirm::class, inversedBy'statEcoutePodcast')]
  13.     #[ORM\JoinColumn(nullablefalse)]
  14.     private $Cabinet;
  15.     #[ORM\Column(type'string'length255)]
  16.     private $Annee;
  17.     #[ORM\Column(type'string'length255)]
  18.     private $mois;
  19.     #[ORM\Column(type'string'length255)]
  20.     private $Ecoutes;
  21.     public function getId(): ?int
  22.     {
  23.         return $this->id;
  24.     }
  25.     public function getCabinet(): ?AccountingFirm
  26.     {
  27.         return $this->Cabinet;
  28.     }
  29.     public function setCabinet(?AccountingFirm $Cabinet): self
  30.     {
  31.         $this->Cabinet $Cabinet;
  32.         return $this;
  33.     }
  34.     public function getAnnee(): ?string
  35.     {
  36.         return $this->Annee;
  37.     }
  38.     public function setAnnee(string $Annee): self
  39.     {
  40.         $this->Annee $Annee;
  41.         return $this;
  42.     }
  43.     public function getMois(): ?string
  44.     {
  45.         return $this->mois;
  46.     }
  47.     public function setMois(string $mois): self
  48.     {
  49.         $this->mois $mois;
  50.         return $this;
  51.     }
  52.     public function getEcoutes(): ?string
  53.     {
  54.         return $this->Ecoutes;
  55.     }
  56.     public function setEcoutes(string $Ecoutes): self
  57.     {
  58.         $this->Ecoutes $Ecoutes;
  59.         return $this;
  60.     }
  61. }