src/Entity/Entreprise.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EntrepriseRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassEntrepriseRepository::class)]
  7. class Entreprise
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $rs null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $rc null;
  17.     #[ORM\Column(length255)]
  18.     private ?string $identifiantF null;
  19.     #[ORM\Column(length255)]
  20.     private ?string $pattente null;
  21.     #[ORM\Column(length255)]
  22.     private ?string $cnss null;
  23.     #[ORM\Column(length255)]
  24.     private ?string $ice null;
  25.     #[ORM\Column(length255)]
  26.     private ?string $adresse null;
  27.     #[ORM\Column(length255)]
  28.     private ?string $capital null;
  29.     #[ORM\Column(length255)]
  30.     private ?string $email null;
  31.     #[ORM\Column(length255)]
  32.     private ?string $tel null;
  33.     #[ORM\Column(length255)]
  34.     private ?string $fax null;
  35.     #[ORM\Column(typeTypes::TEXT)]
  36.     private ?string $footer null;
  37.     #[ORM\Column(length255)]
  38.     private ?string $logo null;
  39.     #[ORM\Column(length255)]
  40.     private ?string $background null;
  41.     #[ORM\Column(length255)]
  42.     private ?string $colorText null;
  43.     #[ORM\Column(length255)]
  44.     private ?string $gsm null;
  45.     #[ORM\Column]
  46.     private ?float $prixMinCmd null;
  47.     #[ORM\Column]
  48.     private ?float $fraisLivraison2 null;
  49.     #[ORM\Column]
  50.     private ?float $prixMinCmd2 null;
  51.     #[ORM\Column]
  52.     private ?float $fraisLivraison null;
  53.     public function getId(): ?int
  54.     {
  55.         return $this->id;
  56.     }
  57.     public function getRs(): ?string
  58.     {
  59.         return $this->rs;
  60.     }
  61.     public function setRs(string $rs): static
  62.     {
  63.         $this->rs $rs;
  64.         return $this;
  65.     }
  66.     public function getRc(): ?string
  67.     {
  68.         return $this->rc;
  69.     }
  70.     public function setRc(string $rc): static
  71.     {
  72.         $this->rc $rc;
  73.         return $this;
  74.     }
  75.     public function getIdentifiantF(): ?string
  76.     {
  77.         return $this->identifiantF;
  78.     }
  79.     public function setIdentifiantF(string $identifiantF): static
  80.     {
  81.         $this->identifiantF $identifiantF;
  82.         return $this;
  83.     }
  84.     public function getPattente(): ?string
  85.     {
  86.         return $this->pattente;
  87.     }
  88.     public function setPattente(string $pattente): static
  89.     {
  90.         $this->pattente $pattente;
  91.         return $this;
  92.     }
  93.     public function getCnss(): ?string
  94.     {
  95.         return $this->cnss;
  96.     }
  97.     public function setCnss(string $cnss): static
  98.     {
  99.         $this->cnss $cnss;
  100.         return $this;
  101.     }
  102.     public function getIce(): ?string
  103.     {
  104.         return $this->ice;
  105.     }
  106.     public function setIce(string $ice): static
  107.     {
  108.         $this->ice $ice;
  109.         return $this;
  110.     }
  111.     public function getAdresse(): ?string
  112.     {
  113.         return $this->adresse;
  114.     }
  115.     public function setAdresse(string $adresse): static
  116.     {
  117.         $this->adresse $adresse;
  118.         return $this;
  119.     }
  120.     public function getCapital(): ?string
  121.     {
  122.         return $this->capital;
  123.     }
  124.     public function setCapital(string $capital): static
  125.     {
  126.         $this->capital $capital;
  127.         return $this;
  128.     }
  129.     public function getEmail(): ?string
  130.     {
  131.         return $this->email;
  132.     }
  133.     public function setEmail(string $email): static
  134.     {
  135.         $this->email $email;
  136.         return $this;
  137.     }
  138.     public function getTel(): ?string
  139.     {
  140.         return $this->tel;
  141.     }
  142.     public function setTel(string $tel): static
  143.     {
  144.         $this->tel $tel;
  145.         return $this;
  146.     }
  147.     public function getFax(): ?string
  148.     {
  149.         return $this->fax;
  150.     }
  151.     public function setFax(string $fax): static
  152.     {
  153.         $this->fax $fax;
  154.         return $this;
  155.     }
  156.     public function getFooter(): ?string
  157.     {
  158.         return $this->footer;
  159.     }
  160.     public function setFooter(string $footer): static
  161.     {
  162.         $this->footer $footer;
  163.         return $this;
  164.     }
  165.     public function getLogo(): ?string
  166.     {
  167.         return $this->logo;
  168.     }
  169.     public function setLogo(string $logo): static
  170.     {
  171.         $this->logo $logo;
  172.         return $this;
  173.     }
  174.     public function getBackground(): ?string
  175.     {
  176.         return $this->background;
  177.     }
  178.     public function setBackground(string $background): static
  179.     {
  180.         $this->background $background;
  181.         return $this;
  182.     }
  183.     public function getColorText(): ?string
  184.     {
  185.         return $this->colorText;
  186.     }
  187.     public function setColorText(string $colorText): static
  188.     {
  189.         $this->colorText $colorText;
  190.         return $this;
  191.     }
  192.     public function getGsm(): ?string
  193.     {
  194.         return $this->gsm;
  195.     }
  196.     public function setGsm(string $gsm): static
  197.     {
  198.         $this->gsm $gsm;
  199.         return $this;
  200.     }
  201.     public function getPrixMinCmd(): ?float
  202.     {
  203.         return $this->prixMinCmd;
  204.     }
  205.     public function setPrixMinCmd(float $prixMinCmd): static
  206.     {
  207.         $this->prixMinCmd $prixMinCmd;
  208.         return $this;
  209.     }
  210.     public function getFraisLivraison2(): ?float
  211.     {
  212.         return $this->fraisLivraison2;
  213.     }
  214.     public function setFraisLivraison2(float $fraisLivraison2): static
  215.     {
  216.         $this->fraisLivraison2 $fraisLivraison2;
  217.         return $this;
  218.     }
  219.     public function getPrixMinCmd2(): ?float
  220.     {
  221.         return $this->prixMinCmd2;
  222.     }
  223.     public function setPrixMinCmd2(float $prixMinCmd2): static
  224.     {
  225.         $this->prixMinCmd2 $prixMinCmd2;
  226.         return $this;
  227.     }
  228.     public function getFraisLivraison(): ?float
  229.     {
  230.         return $this->fraisLivraison;
  231.     }
  232.     public function setFraisLivraison(float $fraisLivraison): static
  233.     {
  234.         $this->fraisLivraison $fraisLivraison;
  235.         return $this;
  236.     }
  237. }