src/Entity/Setting.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SettingRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassSettingRepository::class)]
  7. class Setting
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $expediteur null;
  15.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  16.     private ?string $mailFr null;
  17.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  18.     private ?string $MailUk null;
  19.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  20.     private ?string $mailDe null;
  21.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  22.     private ?string $mailEs null;
  23.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  24.     private ?string $mailIt null;
  25.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  26.     private ?string $note null;
  27.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  28.     private ?string $noteSystem null;
  29.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  30.     private ?string $noteEchange null;
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getExpediteur(): ?string
  36.     {
  37.         return $this->expediteur;
  38.     }
  39.     public function setExpediteur(?string $expediteur): self
  40.     {
  41.         $this->expediteur $expediteur;
  42.         return $this;
  43.     }
  44.     public function getMailFr(): ?string
  45.     {
  46.         return $this->mailFr;
  47.     }
  48.     public function setMailFr(?string $mailFr): self
  49.     {
  50.         $this->mailFr $mailFr;
  51.         return $this;
  52.     }
  53.     public function getMailUk(): ?string
  54.     {
  55.         return $this->MailUk;
  56.     }
  57.     public function setMailUk(?string $MailUk): self
  58.     {
  59.         $this->MailUk $MailUk;
  60.         return $this;
  61.     }
  62.     public function getMailDe(): ?string
  63.     {
  64.         return $this->mailDe;
  65.     }
  66.     public function setMailDe(?string $mailDe): self
  67.     {
  68.         $this->mailDe $mailDe;
  69.         return $this;
  70.     }
  71.     public function getMailEs(): ?string
  72.     {
  73.         return $this->mailEs;
  74.     }
  75.     public function setMailEs(?string $mailEs): self
  76.     {
  77.         $this->mailEs $mailEs;
  78.         return $this;
  79.     }
  80.     public function getMailIt(): ?string
  81.     {
  82.         return $this->mailIt;
  83.     }
  84.     public function setMailIt(?string $mailIt): self
  85.     {
  86.         $this->mailIt $mailIt;
  87.         return $this;
  88.     }
  89.     public function getNote(): ?string
  90.     {
  91.         return $this->note;
  92.     }
  93.     public function setNote(?string $note): self
  94.     {
  95.         $this->note $note;
  96.         return $this;
  97.     }
  98.     public function getNoteSystem(): ?string
  99.     {
  100.         return $this->noteSystem;
  101.     }
  102.     public function setNoteSystem(?string $noteSystem): self
  103.     {
  104.         $this->noteSystem $noteSystem;
  105.         return $this;
  106.     }
  107.     public function getNoteEchange(): ?string
  108.     {
  109.         return $this->noteEchange;
  110.     }
  111.     public function setNoteEchange(?string $noteEchange): self
  112.     {
  113.         $this->noteEchange $noteEchange;
  114.         return $this;
  115.     }
  116. }