<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Favoritostiposterminal
*
* @ORM\Table(name="favoritostiposterminal", options={"readOnly": true})
* @ORM\Entity
*/
class Favoritostiposterminal
{
/**
* @var int
* @ORM\Id
* @ORM\Column(name="IDTIPOTERMINAL", type="integer", nullable=false)
*/
private $idtipoterminal;
/**
* @var int
*
* @ORM\Column(name="POSICION", type="integer", nullable=false)
*/
private $posicion;
/**
* @var int
*
* @ORM\Column(name="CODFAVORITO", type="integer", nullable=false)
*/
private $codfavorito;
public function getIdtipoterminal(): ?int
{
return $this->idtipoterminal;
}
public function setIdtipoterminal(int $idtipoterminal): self
{
$this->idtipoterminal = $idtipoterminal;
return $this;
}
public function getPosicion(): ?int
{
return $this->posicion;
}
public function setPosicion(int $posicion): self
{
$this->posicion = $posicion;
return $this;
}
public function getCodfavorito(): ?int
{
return $this->codfavorito;
}
public function setCodfavorito(int $codfavorito): self
{
$this->codfavorito = $codfavorito;
return $this;
}
}