src/Entity/Favoritostiposterminal.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Favoritostiposterminal
  6.  *
  7.  * @ORM\Table(name="favoritostiposterminal", options={"readOnly": true})
  8.  * @ORM\Entity
  9.  */
  10. class Favoritostiposterminal
  11. {
  12.     /**
  13.      * @var int
  14.      * @ORM\Id
  15.      * @ORM\Column(name="IDTIPOTERMINAL", type="integer", nullable=false)
  16.      */
  17.     private $idtipoterminal;
  18.     /**
  19.      * @var int
  20.      *
  21.      * @ORM\Column(name="POSICION", type="integer", nullable=false)
  22.      */
  23.     private $posicion;
  24.     /**
  25.      * @var int
  26.      *
  27.      * @ORM\Column(name="CODFAVORITO", type="integer", nullable=false)
  28.      */
  29.     private $codfavorito;
  30.     public function getIdtipoterminal(): ?int
  31.     {
  32.         return $this->idtipoterminal;
  33.     }
  34.     public function setIdtipoterminal(int $idtipoterminal): self
  35.     {
  36.         $this->idtipoterminal $idtipoterminal;
  37.         return $this;
  38.     }
  39.     public function getPosicion(): ?int
  40.     {
  41.         return $this->posicion;
  42.     }
  43.     public function setPosicion(int $posicion): self
  44.     {
  45.         $this->posicion $posicion;
  46.         return $this;
  47.     }
  48.     public function getCodfavorito(): ?int
  49.     {
  50.         return $this->codfavorito;
  51.     }
  52.     public function setCodfavorito(int $codfavorito): self
  53.     {
  54.         $this->codfavorito $codfavorito;
  55.         return $this;
  56.     }
  57. }