src/Entity/Favoritoscab.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\DBAL\Types\Types;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * Favoritoscab
  7.  *
  8.  * @ORM\Table(name="favoritoscab", options={"readOnly": true})
  9.  * @ORM\Entity
  10.  */
  11. class Favoritoscab
  12. {
  13.     /**
  14.      * @var int
  15.      * @ORM\Id
  16.      * @ORM\Column(name="CODFAVORITO", type="integer", nullable=false)
  17.      */
  18.     private $codfavorito;
  19.     /**
  20.      * @var string|null
  21.      *
  22.      * @ORM\Column(name="DESCRIPCION", type="string", length=100, nullable=true, options={"default"="NULL"})
  23.      */
  24.     private $descripcion 'NULL';
  25.     /**
  26.      * @var string|null
  27.      *
  28.      * @ORM\Column(name="IMAGEN", type="blob", length=0, nullable=true, options={"default"="NULL"})
  29.      */
  30.     private $imagen 'NULL';
  31.     /**
  32.      * @var int|null
  33.      *
  34.      * @ORM\Column(name="COLORFONDO", type="integer", nullable=true, options={"default"="NULL"})
  35.      */
  36.     private $colorfondo NULL;
  37.     /**
  38.      * @var int|null
  39.      *
  40.      * @ORM\Column(name="COLORTEXTO", type="integer", nullable=true, options={"default"="NULL"})
  41.      */
  42.     private $colortexto NULL;
  43.     /**
  44.      * @var string|null
  45.      *
  46.      * @ORM\Column(name="VISIBLEWEB", type="string", length=10, nullable=true, options={"default"="NULL"})
  47.      */
  48.     private $visibleweb 'NULL';
  49.     /**
  50.      * @var string|null
  51.      *
  52.      * @ORM\Column(name="VERSION", type="blob", length=16777215, nullable=true, options={"default"="NULL"})
  53.      */
  54.     private $version 'NULL';
  55.     /**
  56.      * @var int|null
  57.      *
  58.      * @ORM\Column(name="POSICION", type="integer", nullable=true, options={"default"="NULL"})
  59.      */
  60.     private $posicion NULL;
  61.     /**
  62.      * @var string|null
  63.      *
  64.      * @ORM\Column(name="CENTRO", type="string", length=120, nullable=true, options={"default"="NULL"})
  65.      */
  66.     private $centro 'NULL';
  67.     /**
  68.      * @var \DateTime|null
  69.      *
  70.      * @ORM\Column(name="FECHAINI", type="datetime", nullable=true, options={"default"="NULL"})
  71.      */
  72.     private $fechaini 'NULL';
  73.     /**
  74.      * @var \DateTime|null
  75.      *
  76.      * @ORM\Column(name="FECHAFIN", type="datetime", nullable=true, options={"default"="NULL"})
  77.      */
  78.     private $fechafin 'NULL';
  79.     /**
  80.      * @var bool|null
  81.      *
  82.      * @ORM\Column(name="DESCATALOGADO", type="boolean", nullable=true, options={"default"="NULL"})
  83.      */
  84.     private $descatalogado 'NULL';
  85.     /**
  86.      * @var int|null
  87.      *
  88.      * @ORM\Column(name="CODFAVORITOPARENT", type="integer", nullable=true, options={"default"="NULL"})
  89.      */
  90.     private $codfavoritoparent NULL;
  91.     /**
  92.      * @var bool|null
  93.      *
  94.      * @ORM\Column(name="VISIBLEVENTA", type="boolean", nullable=true, options={"default"="NULL"})
  95.      */
  96.     private $visibleventa 'NULL';
  97.     /**
  98.      * @var bool|null
  99.      *
  100.      * @ORM\Column(name="VISIBLECOMPRA", type="boolean", nullable=true, options={"default"="NULL"})
  101.      */
  102.     private $visiblecompra 'NULL';
  103.     /**
  104.      * @var int|null
  105.      *
  106.      * @ORM\Column(name="VISIBILIDAD", type="integer", nullable=true, options={"default"="NULL"})
  107.      */
  108.     private $visibilidad NULL;
  109.     public function getCodfavorito(): ?int
  110.     {
  111.         return $this->codfavorito;
  112.     }
  113.     public function setCodfavorito(int $codfavorito): self
  114.     {
  115.         $this->codfavorito $codfavorito;
  116.         return $this;
  117.     }
  118.     public function getDescripcion(): ?string
  119.     {
  120.         return $this->descripcion;
  121.     }
  122.     public function setDescripcion(?string $descripcion): self
  123.     {
  124.         $this->descripcion $descripcion;
  125.         return $this;
  126.     }
  127.     public function getImagen()
  128.     {
  129.         return $this->imagen;
  130.     }
  131.     public function setImagen($imagen): self
  132.     {
  133.         $this->imagen $imagen;
  134.         return $this;
  135.     }
  136.     public function getColorfondo(): ?int
  137.     {
  138.         return $this->colorfondo;
  139.     }
  140.     public function setColorfondo(?int $colorfondo): self
  141.     {
  142.         $this->colorfondo $colorfondo;
  143.         return $this;
  144.     }
  145.     public function getColortexto(): ?int
  146.     {
  147.         return $this->colortexto;
  148.     }
  149.     public function setColortexto(?int $colortexto): self
  150.     {
  151.         $this->colortexto $colortexto;
  152.         return $this;
  153.     }
  154.     public function getVisibleweb(): ?string
  155.     {
  156.         return $this->visibleweb;
  157.     }
  158.     public function setVisibleweb(?string $visibleweb): self
  159.     {
  160.         $this->visibleweb $visibleweb;
  161.         return $this;
  162.     }
  163.     public function getVersion()
  164.     {
  165.         return $this->version;
  166.     }
  167.     public function setVersion($version): self
  168.     {
  169.         $this->version $version;
  170.         return $this;
  171.     }
  172.     public function getPosicion(): ?int
  173.     {
  174.         return $this->posicion;
  175.     }
  176.     public function setPosicion(?int $posicion): self
  177.     {
  178.         $this->posicion $posicion;
  179.         return $this;
  180.     }
  181.     public function getCentro(): ?string
  182.     {
  183.         return $this->centro;
  184.     }
  185.     public function setCentro(?string $centro): self
  186.     {
  187.         $this->centro $centro;
  188.         return $this;
  189.     }
  190.     public function getFechaini(): ?\DateTimeInterface
  191.     {
  192.         return $this->fechaini;
  193.     }
  194.     public function setFechaini(?\DateTimeInterface $fechaini): self
  195.     {
  196.         $this->fechaini $fechaini;
  197.         return $this;
  198.     }
  199.     public function getFechafin(): ?\DateTimeInterface
  200.     {
  201.         return $this->fechafin;
  202.     }
  203.     public function setFechafin(?\DateTimeInterface $fechafin): self
  204.     {
  205.         $this->fechafin $fechafin;
  206.         return $this;
  207.     }
  208.     public function getDescatalogado(): ?bool
  209.     {
  210.         return $this->descatalogado;
  211.     }
  212.     public function setDescatalogado(?bool $descatalogado): self
  213.     {
  214.         $this->descatalogado $descatalogado;
  215.         return $this;
  216.     }
  217.     public function getCodfavoritoparent(): ?int
  218.     {
  219.         return $this->codfavoritoparent;
  220.     }
  221.     public function setCodfavoritoparent(?int $codfavoritoparent): self
  222.     {
  223.         $this->codfavoritoparent $codfavoritoparent;
  224.         return $this;
  225.     }
  226.     public function getVisibleventa(): ?bool
  227.     {
  228.         return $this->visibleventa;
  229.     }
  230.     public function setVisibleventa(?bool $visibleventa): self
  231.     {
  232.         $this->visibleventa $visibleventa;
  233.         return $this;
  234.     }
  235.     public function getVisiblecompra(): ?bool
  236.     {
  237.         return $this->visiblecompra;
  238.     }
  239.     public function setVisiblecompra(?bool $visiblecompra): self
  240.     {
  241.         $this->visiblecompra $visiblecompra;
  242.         return $this;
  243.     }
  244.     public function getVisibilidad(): ?int
  245.     {
  246.         return $this->visibilidad;
  247.     }
  248.     public function setVisibilidad(?int $visibilidad): self
  249.     {
  250.         $this->visibilidad $visibilidad;
  251.         return $this;
  252.     }
  253.     public function isDescatalogado(): ?bool
  254.     {
  255.         return $this->descatalogado;
  256.     }
  257.     public function isVisibleventa(): ?bool
  258.     {
  259.         return $this->visibleventa;
  260.     }
  261.     public function isVisiblecompra(): ?bool
  262.     {
  263.         return $this->visiblecompra;
  264.     }
  265. }