src/Entity/Parameter.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Parameter
  6.  *
  7.  * @ORM\Table(name="parameter")
  8.  * @ORM\Entity
  9.  */
  10. class Parameter
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="IDENTITY")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="zone_geographique", type="text", nullable=false)
  24.      */
  25.     private $zoneGeographique;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="nbRdvMin", type="float", nullable=false)
  30.      */
  31.     private $nbRdvMin 0;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="nbRdvMax", type="float", nullable=false)
  36.      */
  37.     private $nbRdvMax 0;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="tauxDeclenchementPrime", type="float", nullable=false)
  42.      */
  43.     private $tauxDeclenchementPrime;
  44.     /**
  45.      * @var string
  46.      *
  47.      * @ORM\Column(name="alerteFinPE", type="float", nullable=false)
  48.      */
  49.     private $alerteFinPE;
  50.     /**
  51.      * @var string
  52.      *
  53.      * @ORM\Column(name="emailPE", type="string", nullable=true)
  54.      */
  55.     private $emailPE;
  56.     /**
  57.      * @var string
  58.      *
  59.      * @ORM\Column(name="tva", type="float", nullable=true)
  60.      */
  61.     private $tva;
  62.     /**
  63.      * @var string
  64.      *
  65.      * @ORM\Column(name="tvaReduce", type="string", nullable=true)
  66.      */
  67.     private $tvaReduce;
  68.     /***
  69.      * @ORM\Column(name="remise", type="float", nullable=true)
  70.      */
  71.     private $remise;
  72.     /**
  73.      * @ORM\Column(name="prime", type="float", nullable=true)
  74.      */
  75.     private $prime 3.4;
  76.     /**
  77.      * @ORM\Column(name="taux_prime", type="float", nullable=true)
  78.      */
  79.     private $taux_prime 10;
  80.     /**
  81.      * @ORM\Column(name="compte_tva_standard", type="string", nullable=true)
  82.      */
  83.     private $compteTVAStandard;
  84.     /**
  85.      * @ORM\Column(name="compte_tva_reduite", type="string", nullable=true)
  86.      */
  87.     private $compteTVAReduite;
  88.     /**
  89.      * @return int
  90.      */
  91.     public function getId(): int
  92.     {
  93.         return $this->id;
  94.     }
  95.     /**
  96.      * @param int $id
  97.      */
  98.     public function setId(int $id): void
  99.     {
  100.         $this->id $id;
  101.     }
  102.     /**
  103.      * @return string
  104.      */
  105.     public function getZoneGeographique(): ?string
  106.     {
  107.         return $this->zoneGeographique;
  108.     }
  109.     /**
  110.      * @param string $zoneGeographique
  111.      */
  112.     public function setZoneGeographique(string $zoneGeographique): void
  113.     {
  114.         $this->zoneGeographique $zoneGeographique;
  115.     }
  116.     /**
  117.      * @return string
  118.      */
  119.     public function getNbRdvMin(): string
  120.     {
  121.         return $this->nbRdvMin;
  122.     }
  123.     /**
  124.      * @param string $nbRdvMin
  125.      */
  126.     public function setNbRdvMin(string $nbRdvMin): void
  127.     {
  128.         $this->nbRdvMin $nbRdvMin;
  129.     }
  130.     /**
  131.      * @return string
  132.      */
  133.     public function getNbRdvMax(): string
  134.     {
  135.         return $this->nbRdvMax;
  136.     }
  137.     /**
  138.      * @param string $nbRdvMax
  139.      */
  140.     public function setNbRdvMax(string $nbRdvMax): void
  141.     {
  142.         $this->nbRdvMax $nbRdvMax;
  143.     }
  144.     /**
  145.      * @return string
  146.      */
  147.     public function getTauxDeclenchementPrime(): string
  148.     {
  149.         return $this->tauxDeclenchementPrime;
  150.     }
  151.     /**
  152.      * @param string $tauxDeclenchementPrime
  153.      */
  154.     public function setTauxDeclenchementPrime(string $tauxDeclenchementPrime): void
  155.     {
  156.         $this->tauxDeclenchementPrime $tauxDeclenchementPrime;
  157.     }
  158.     /**
  159.      * @return string
  160.      */
  161.     public function getAlerteFinPE(): string
  162.     {
  163.         return $this->alerteFinPE;
  164.     }
  165.     /**
  166.      * @param string $alerteFinPE
  167.      */
  168.     public function setAlerteFinPE(string $alerteFinPE): void
  169.     {
  170.         $this->alerteFinPE $alerteFinPE;
  171.     }
  172.     /**
  173.      * @return string
  174.      */
  175.     public function getEmailPE(): string
  176.     {
  177.         return $this->emailPE;
  178.     }
  179.     /**
  180.      * @param string $emailPE
  181.      */
  182.     public function setEmailPE(string $emailPE): void
  183.     {
  184.         $this->emailPE $emailPE;
  185.     }
  186.     /**
  187.      * @return string
  188.      */
  189.     public function getTva(): string
  190.     {
  191.         return $this->tva;
  192.     }
  193.     /**
  194.      * @param string $tva
  195.      */
  196.     public function setTva(string $tva): void
  197.     {
  198.         $this->tva $tva;
  199.     }
  200.     /**
  201.      * @return string
  202.      */
  203.     public function getTvaReduce(): string
  204.     {
  205.         return $this->tvaReduce;
  206.     }
  207.     /**
  208.      * @param string $tvaReduce
  209.      */
  210.     public function setTvaReduce(string $tvaReduce): void
  211.     {
  212.         $this->tvaReduce $tvaReduce;
  213.     }
  214.     /**
  215.      * @return string
  216.      */
  217.     public function getRemise(): string
  218.     {
  219.         return $this->remise;
  220.     }
  221.     /**
  222.      * @param string $remise
  223.      */
  224.     public function setRemise(string $remise): void
  225.     {
  226.         $this->remise $remise;
  227.     }
  228.     /**
  229.      * @return mixed
  230.      */
  231.     public function getPrime()
  232.     {
  233.         return $this->prime;
  234.     }
  235.     /**
  236.      * @param mixed $prime
  237.      */
  238.     public function setPrime($prime): void
  239.     {
  240.         $this->prime $prime;
  241.     }
  242.     /**
  243.      * @return mixed
  244.      */
  245.     public function getTauxPrime()
  246.     {
  247.         return $this->taux_prime;
  248.     }
  249.     /**
  250.      * @param mixed $taux_prime
  251.      */
  252.     public function setTauxPrime($taux_prime): void
  253.     {
  254.         $this->taux_prime $taux_prime;
  255.     }
  256.     /**
  257.      * @return mixed
  258.      */
  259.     public function getCompteTVAStandard()
  260.     {
  261.         return $this->compteTVAStandard;
  262.     }
  263.     /**
  264.      * @param mixed $compteTVAStandard
  265.      */
  266.     public function setCompteTVAStandard($compteTVAStandard): void
  267.     {
  268.         $this->compteTVAStandard $compteTVAStandard;
  269.     }
  270.     /**
  271.      * @return mixed
  272.      */
  273.     public function getCompteTVAReduite()
  274.     {
  275.         return $this->compteTVAReduite;
  276.     }
  277.     /**
  278.      * @param mixed $compteTVAReduite
  279.      */
  280.     public function setCompteTVAReduite($compteTVAReduite): void
  281.     {
  282.         $this->compteTVAReduite $compteTVAReduite;
  283.     }
  284. }