src/Entity/Fees.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Fees
  6.  *
  7.  * @ORM\Table(name="lize_Fees")
  8.  * @ORM\Entity
  9.  */
  10. class Fees
  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 int
  22.      *
  23.      * @ORM\Column(name="Consumo_MWh", type="integer", nullable=false)
  24.      */
  25.     private $consumoMwh;
  26.     /**
  27.      * @var int
  28.      *
  29.      * @ORM\Column(name="Fee", type="integer", nullable=false)
  30.      */
  31.     private $fee;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="Cuota_mes", type="decimal", precision=11, scale=2, nullable=false)
  36.      */
  37.     private $cuotaMes;
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getConsumoMwh(): ?int
  43.     {
  44.         return $this->consumoMwh;
  45.     }
  46.     public function setConsumoMwh(int $consumoMwh): self
  47.     {
  48.         $this->consumoMwh $consumoMwh;
  49.         return $this;
  50.     }
  51.     public function getFee(): ?int
  52.     {
  53.         return $this->fee;
  54.     }
  55.     public function setFee(int $fee): self
  56.     {
  57.         $this->fee $fee;
  58.         return $this;
  59.     }
  60.     public function getCuotaMes(): ?string
  61.     {
  62.         return $this->cuotaMes;
  63.     }
  64.     public function setCuotaMes(string $cuotaMes): self
  65.     {
  66.         $this->cuotaMes $cuotaMes;
  67.         return $this;
  68.     }
  69. }