src/Entity/Porcentajes.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Porcentajes
  6.  *
  7.  * @ORM\Table(name="lize_Porcentajes")
  8.  * @ORM\Entity
  9.  */
  10. class Porcentajes
  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="Facturación", type="decimal", precision=10, scale=2, nullable=false)
  24.      */
  25.     private $facturacion;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="Porcentaje", type="decimal", precision=10, scale=2, nullable=false)
  30.      */
  31.     private $porcentaje;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="Cuota_mes", type="decimal", precision=10, scale=2, nullable=false)
  36.      */
  37.     private $cuotaMes;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="Cuota_dia", type="decimal", precision=10, scale=2, nullable=false)
  42.      */
  43.     private $cuotaDia;
  44.     /**
  45.      * @var string|null
  46.      *
  47.      * @ORM\Column(name="Fee", type="string", length=64, nullable=true)
  48.      */
  49.     private $fee;
  50.     public function getId(): ?int
  51.     {
  52.         return $this->id;
  53.     }
  54.     public function getFacturacion(): ?string
  55.     {
  56.         return $this->facturacion;
  57.     }
  58.     public function setFacturacion(string $facturacion): self
  59.     {
  60.         $this->facturacion $facturacion;
  61.         return $this;
  62.     }
  63.     public function getPorcentaje(): ?string
  64.     {
  65.         return $this->porcentaje;
  66.     }
  67.     public function setPorcentaje(string $porcentaje): self
  68.     {
  69.         $this->porcentaje $porcentaje;
  70.         return $this;
  71.     }
  72.     public function getCuotaMes(): ?string
  73.     {
  74.         return $this->cuotaMes;
  75.     }
  76.     public function setCuotaMes(string $cuotaMes): self
  77.     {
  78.         $this->cuotaMes $cuotaMes;
  79.         return $this;
  80.     }
  81.     public function getCuotaDia(): ?string
  82.     {
  83.         return $this->cuotaDia;
  84.     }
  85.     public function setCuotaDia(string $cuotaDia): self
  86.     {
  87.         $this->cuotaDia $cuotaDia;
  88.         return $this;
  89.     }
  90.     public function getFee(): ?string
  91.     {
  92.         return $this->fee;
  93.     }
  94.     public function setFee(?string $fee): self
  95.     {
  96.         $this->fee $fee;
  97.         return $this;
  98.     }
  99. }