src/Entity/CargosSistema.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * CargosSistema
  6.  *
  7.  * @ORM\Table(name="lize_CargosDelSistema")
  8.  * @ORM\Entity
  9.  */
  10. class CargosSistema
  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="Tarifa", type="string", length=16, nullable=false)
  24.      */
  25.     private $tarifa;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="Precio_Potencia", type="string", length=16, nullable=false)
  30.      */
  31.     private $precioPotencia;
  32.     /**
  33.      * @var float
  34.      *
  35.      * @ORM\Column(name="Precio_P1", type="float", precision=10, scale=0, nullable=false)
  36.      */
  37.     private $precioP1;
  38.     /**
  39.      * @var float
  40.      *
  41.      * @ORM\Column(name="Precio_P2", type="float", precision=10, scale=0, nullable=false)
  42.      */
  43.     private $precioP2;
  44.     /**
  45.      * @var float
  46.      *
  47.      * @ORM\Column(name="Precio_P3", type="float", precision=10, scale=0, nullable=false)
  48.      */
  49.     private $precioP3;
  50.     /**
  51.      * @var float|null
  52.      *
  53.      * @ORM\Column(name="Precio_P4", type="float", precision=10, scale=0, nullable=true)
  54.      */
  55.     private $precioP4;
  56.     /**
  57.      * @var float|null
  58.      *
  59.      * @ORM\Column(name="Precio_P5", type="float", precision=10, scale=0, nullable=true)
  60.      */
  61.     private $precioP5;
  62.     /**
  63.      * @var float|null
  64.      *
  65.      * @ORM\Column(name="Precio_P6", type="float", precision=10, scale=0, nullable=true)
  66.      */
  67.     private $precioP6;
  68.     /**
  69.      * @var string|null
  70.      *
  71.      * @ORM\Column(name="Observaciones", type="string", length=64, nullable=true)
  72.      */
  73.     private $observaciones;
  74.     public function getId(): ?int
  75.     {
  76.         return $this->id;
  77.     }
  78.     public function getTarifa(): ?string
  79.     {
  80.         return $this->tarifa;
  81.     }
  82.     public function setTarifa(string $tarifa): self
  83.     {
  84.         $this->tarifa $tarifa;
  85.         return $this;
  86.     }
  87.     public function getPrecioPotencia(): ?string
  88.     {
  89.         return $this->precioPotencia;
  90.     }
  91.     public function setPrecioPotencia(string $precioPotencia): self
  92.     {
  93.         $this->precioPotencia $precioPotencia;
  94.         return $this;
  95.     }
  96.     public function getPrecioP1(): ?float
  97.     {
  98.         return $this->precioP1;
  99.     }
  100.     public function setPrecioP1(float $precioP1): self
  101.     {
  102.         $this->precioP1 $precioP1;
  103.         return $this;
  104.     }
  105.     public function getPrecioP2(): ?float
  106.     {
  107.         return $this->precioP2;
  108.     }
  109.     public function setPrecioP2(float $precioP2): self
  110.     {
  111.         $this->precioP2 $precioP2;
  112.         return $this;
  113.     }
  114.     public function getPrecioP3(): ?float
  115.     {
  116.         return $this->precioP3;
  117.     }
  118.     public function setPrecioP3(float $precioP3): self
  119.     {
  120.         $this->precioP3 $precioP3;
  121.         return $this;
  122.     }
  123.     public function getPrecioP4(): ?float
  124.     {
  125.         return $this->precioP4;
  126.     }
  127.     public function setPrecioP4(?float $precioP4): self
  128.     {
  129.         $this->precioP4 $precioP4;
  130.         return $this;
  131.     }
  132.     public function getPrecioP5(): ?float
  133.     {
  134.         return $this->precioP5;
  135.     }
  136.     public function setPrecioP5(?float $precioP5): self
  137.     {
  138.         $this->precioP5 $precioP5;
  139.         return $this;
  140.     }
  141.     public function getPrecioP6(): ?float
  142.     {
  143.         return $this->precioP6;
  144.     }
  145.     public function setPrecioP6(?float $precioP6): self
  146.     {
  147.         $this->precioP6 $precioP6;
  148.         return $this;
  149.     }
  150.     public function getObservaciones(): ?string
  151.     {
  152.         return $this->observaciones;
  153.     }
  154.     public function setObservaciones(?string $observaciones): self
  155.     {
  156.         $this->observaciones $observaciones;
  157.         return $this;
  158.     }
  159. }