src/Entity/FournitureItem.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FournitureItemRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=FournitureItemRepository::class)
  7.  */
  8. class FournitureItem
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $titre;
  20.     /**
  21.      * @ORM\Column(type="string", length=255)
  22.      */
  23.     private $sousTitre;
  24.     /**
  25.      * @ORM\Column(type="float")
  26.      */
  27.     private $montant;
  28.     /**
  29.      * @ORM\Column(type="float")
  30.      */
  31.     private $montantUnitaire;    
  32.     /**
  33.      * @ORM\Column(type="float", nullable="true")
  34.      */
  35.     private $montantMbe;    
  36.     /**
  37.      * @ORM\ManyToOne(targetEntity=FournitureCategorie::class, inversedBy="fournituresItem")
  38.      */
  39.     private $fournitureCategorie;
  40.     /**
  41.      * @ORM\Column(type="integer", nullable=true)
  42.      */
  43.     private $nbBouteille;
  44.     /**
  45.      * @ORM\Column(type="integer", nullable=true)
  46.      */
  47.     private $nbMagnum;
  48.     /**
  49.      * @ORM\Column(type="integer", nullable=true)
  50.      */
  51.     private $nbJeroboam;
  52.     /**
  53.      * @ORM\Column(type="integer", nullable=true)     
  54.      */
  55.     private $ordre;    
  56.     public function getId(): ?int
  57.     {
  58.         return $this->id;
  59.     }
  60.     public function getTitre(): ?string
  61.     {
  62.         return $this->titre;
  63.     }
  64.     public function setTitre(string $titre): self
  65.     {
  66.         $this->titre $titre;
  67.         return $this;
  68.     }
  69.     public function getSousTitre(): ?string
  70.     {
  71.         return $this->sousTitre;
  72.     }
  73.     public function setSousTitre(string $sousTitre): self
  74.     {
  75.         $this->sousTitre $sousTitre;
  76.         return $this;
  77.     }
  78.     public function getMontant(): ?float
  79.     {
  80.         return $this->montant;
  81.     }
  82.     public function setMontant(float $montant): self
  83.     {
  84.         $this->montant $montant;
  85.         return $this;
  86.     }
  87.     public function getMontantUnitaire(): ?float
  88.     {
  89.         return $this->montantUnitaire;
  90.     }
  91.     public function setMontantUnitaire(float $montantUnitaire): self
  92.     {
  93.         $this->montantUnitaire $montantUnitaire;
  94.         return $this;
  95.     }    
  96.     public function getMontantMbe(): ?float
  97.     {
  98.         return $this->montantMbe;
  99.     }
  100.     public function setMontantMbe(float $montantMbe): self
  101.     {
  102.         $this->montantMbe $montantMbe;
  103.         return $this;
  104.     }
  105.     public function getFournitureCategorie(): ?FournitureCategorie
  106.     {
  107.         return $this->fournitureCategorie;
  108.     }
  109.     public function setFournitureCategorie(?FournitureCategorie $fournitureCategorie): self
  110.     {
  111.         $this->fournitureCategorie $fournitureCategorie;
  112.         return $this;
  113.     }
  114.     public function getNbBouteille(): ?int
  115.     {
  116.         return $this->nbBouteille;
  117.     }
  118.     public function setNbBouteille(?int $nbBouteille): self
  119.     {
  120.         $this->nbBouteille $nbBouteille;
  121.         return $this;
  122.     }
  123.     public function getNbMagnum(): ?int
  124.     {
  125.         return $this->nbMagnum;
  126.     }
  127.     public function setNbMagnum(?int $nbMagnum): self
  128.     {
  129.         $this->nbMagnum $nbMagnum;
  130.         return $this;
  131.     }
  132.     public function getNbJeroboam(): ?int
  133.     {
  134.         return $this->nbJeroboam;
  135.     }
  136.     public function setNbJeroboam(?int $nbJeroboam): self
  137.     {
  138.         $this->nbJeroboam $nbJeroboam;
  139.         return $this;
  140.     }
  141.     public function getOrdre(): ?int
  142.     {
  143.         return $this->ordre;
  144.     }
  145.     
  146.     public function setOrdre(int $ordre): self
  147.     {
  148.         $this->ordre $ordre;
  149.     
  150.         return $this;
  151.     }       
  152. }