src/Entity/Modificadoresarticulos.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.  * Modificadoresarticulos
  7.  *
  8.  * @ORM\Table(name="modificadoresarticulos", uniqueConstraints={@ORM\UniqueConstraint(name="CODMODIFICADOR", columns={"CODMODIFICADOR"}), @ORM\UniqueConstraint(name="IDTARIFAV", columns={"IDTARIFAV"})}, indexes={@ORM\Index(name="CODARTICULO", columns={"CODARTICULO"})}, options={"readOnly": true})
  9.  * @ORM\Entity
  10.  */
  11. class Modificadoresarticulos
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\id
  17.      * @ORM\Column(name="CODARTICULO", type="integer", nullable=false)
  18.      */
  19.     private $codarticulo;
  20.     /**
  21.      * @var int
  22.      *
  23.      * @ORM\Column(name="CODMODIFICADOR", type="integer", nullable=false)
  24.      */
  25.     private $codmodificador;
  26.     /**
  27.      * @var string|null
  28.      *
  29.      * @ORM\Column(name="MULTISELEC", type="string", length=1, nullable=true, options={"default"="NULL"})
  30.      */
  31.     private $multiselec 'NULL';
  32.     /**
  33.      * @var int|null
  34.      *
  35.      * @ORM\Column(name="POSICION", type="integer", nullable=true, options={"default"="NULL"})
  36.      */
  37.     private $posicion NULL;
  38.     /**
  39.      * @var int|null
  40.      *
  41.      * @ORM\Column(name="ORDEN", type="integer", nullable=true, options={"default"="NULL"})
  42.      */
  43.     private $orden NULL;
  44.     /**
  45.      * @var int|null
  46.      *
  47.      * @ORM\Column(name="LIMITE", type="integer", nullable=true, options={"default"="NULL"})
  48.      */
  49.     private $limite NULL;
  50.     /**
  51.      * @var int|null
  52.      *
  53.      * @ORM\Column(name="MINIMO", type="smallint", nullable=true, options={"default"="NULL"})
  54.      */
  55.     private $minimo 'NULL';
  56.     /**
  57.      * @var bool|null
  58.      *
  59.      * @ORM\Column(name="AUTO", type="boolean", nullable=true, options={"default"="NULL"})
  60.      */
  61.     private $auto 'NULL';
  62.     /**
  63.      * @var int|null
  64.      *
  65.      * @ORM\Column(name="GRATIS", type="integer", nullable=true, options={"default"="NULL"})
  66.      */
  67.     private $gratis NULL;
  68.     /**
  69.      * @var int|null
  70.      *
  71.      * @ORM\Column(name="IDTARIFAV", type="integer", nullable=true, options={"default"="NULL"})
  72.      */
  73.     private $idtarifav NULL;
  74.     /**
  75.      * @var bool|null
  76.      *
  77.      * @ORM\Column(name="ORDENOPCIONAL", type="boolean", nullable=true, options={"default"="NULL"})
  78.      */
  79.     private $ordenopcional 'NULL';
  80.     /**
  81.      * @var bool|null
  82.      *
  83.      * @ORM\Column(name="FILTRARTARIFAS", type="boolean", nullable=true, options={"default"="NULL"})
  84.      */
  85.     private $filtrartarifas 'NULL';
  86.     public function getCodarticulo(): ?int
  87.     {
  88.         return $this->codarticulo;
  89.     }
  90.     public function setCodarticulo(int $codarticulo): self
  91.     {
  92.         $this->codarticulo $codarticulo;
  93.         return $this;
  94.     }
  95.     public function getCodmodificador(): ?int
  96.     {
  97.         return $this->codmodificador;
  98.     }
  99.     public function setCodmodificador(int $codmodificador): self
  100.     {
  101.         $this->codmodificador $codmodificador;
  102.         return $this;
  103.     }
  104.     public function getMultiselec(): ?string
  105.     {
  106.         return $this->multiselec;
  107.     }
  108.     public function setMultiselec(?string $multiselec): self
  109.     {
  110.         $this->multiselec $multiselec;
  111.         return $this;
  112.     }
  113.     public function getPosicion(): ?int
  114.     {
  115.         return $this->posicion;
  116.     }
  117.     public function setPosicion(?int $posicion): self
  118.     {
  119.         $this->posicion $posicion;
  120.         return $this;
  121.     }
  122.     public function getOrden(): ?int
  123.     {
  124.         return $this->orden;
  125.     }
  126.     public function setOrden(?int $orden): self
  127.     {
  128.         $this->orden $orden;
  129.         return $this;
  130.     }
  131.     public function getLimite(): ?int
  132.     {
  133.         return $this->limite;
  134.     }
  135.     public function setLimite(?int $limite): self
  136.     {
  137.         $this->limite $limite;
  138.         return $this;
  139.     }
  140.     public function getMinimo(): ?int
  141.     {
  142.         return $this->minimo;
  143.     }
  144.     public function setMinimo(?int $minimo): self
  145.     {
  146.         $this->minimo $minimo;
  147.         return $this;
  148.     }
  149.     public function getAuto(): ?bool
  150.     {
  151.         return $this->auto;
  152.     }
  153.     public function setAuto(?bool $auto): self
  154.     {
  155.         $this->auto $auto;
  156.         return $this;
  157.     }
  158.     public function getGratis(): ?int
  159.     {
  160.         return $this->gratis;
  161.     }
  162.     public function setGratis(?int $gratis): self
  163.     {
  164.         $this->gratis $gratis;
  165.         return $this;
  166.     }
  167.     public function getIdtarifav(): ?int
  168.     {
  169.         return $this->idtarifav;
  170.     }
  171.     public function setIdtarifav(?int $idtarifav): self
  172.     {
  173.         $this->idtarifav $idtarifav;
  174.         return $this;
  175.     }
  176.     public function getOrdenopcional(): ?bool
  177.     {
  178.         return $this->ordenopcional;
  179.     }
  180.     public function setOrdenopcional(?bool $ordenopcional): self
  181.     {
  182.         $this->ordenopcional $ordenopcional;
  183.         return $this;
  184.     }
  185.     public function getFiltrartarifas(): ?bool
  186.     {
  187.         return $this->filtrartarifas;
  188.     }
  189.     public function setFiltrartarifas(?bool $filtrartarifas): self
  190.     {
  191.         $this->filtrartarifas $filtrartarifas;
  192.         return $this;
  193.     }
  194.     public function isAuto(): ?bool
  195.     {
  196.         return $this->auto;
  197.     }
  198.     public function isOrdenopcional(): ?bool
  199.     {
  200.         return $this->ordenopcional;
  201.     }
  202.     public function isFiltrartarifas(): ?bool
  203.     {
  204.         return $this->filtrartarifas;
  205.     }
  206. }