src/Entity/Modificadoreslin.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Modificadoreslin
  6.  *
  7.  * @ORM\Table(name="modificadoreslin", uniqueConstraints={@ORM\UniqueConstraint(name="CODARTICULOCOM", columns={"CODARTICULOCOM"})}, indexes={@ORM\Index(name="CODMODIFICADOR", columns={"CODMODIFICADOR"})}, options={"readOnly": true})
  8.  * @ORM\Entity
  9.  */
  10. class Modificadoreslin
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\id
  16.      * @ORM\Column(name="CODMODIFICADOR", type="integer", nullable=false)
  17.      */
  18.     private $codmodificador;
  19.     /**
  20.      * @var int
  21.      *
  22.      * @ORM\Column(name="CODARTICULOCOM", type="integer", nullable=false)
  23.      */
  24.     private $codarticulocom;
  25.     /**
  26.      * @var int|null
  27.      *
  28.      * @ORM\Column(name="ESARTICULO", type="integer", nullable=true, options={"default"="NULL"})
  29.      */
  30.     private $esarticulo NULL;
  31.     /**
  32.      * @var float|null
  33.      *
  34.      * @ORM\Column(name="DOSIS", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  35.      */
  36.     private $dosis NULL;
  37.     /**
  38.      * @var float|null
  39.      *
  40.      * @ORM\Column(name="INCPRECIO", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  41.      */
  42.     private $incprecio NULL;
  43.     /**
  44.      * @var int|null
  45.      *
  46.      * @ORM\Column(name="POSICION", type="integer", nullable=true, options={"default"="NULL"})
  47.      */
  48.     private $posicion NULL;
  49.     /**
  50.      * @var bool|null
  51.      *
  52.      * @ORM\Column(name="PREDETERMINADO", type="boolean", nullable=true, options={"default"="NULL"})
  53.      */
  54.     private $predeterminado 'NULL';
  55.     /**
  56.      * @var int|null
  57.      *
  58.      * @ORM\Column(name="CODFORMATO", type="integer", nullable=true, options={"default"="NULL"})
  59.      */
  60.     private $codformato NULL;
  61.     /**
  62.      * @var bool|null
  63.      *
  64.      * @ORM\Column(name="ESDTO", type="boolean", nullable=true, options={"default"="NULL"})
  65.      */
  66.     private $esdto 'NULL';
  67.     public function getCodmodificador(): ?int
  68.     {
  69.         return $this->codmodificador;
  70.     }
  71.     public function setCodmodificador(int $codmodificador): self
  72.     {
  73.         $this->codmodificador $codmodificador;
  74.         return $this;
  75.     }
  76.     public function getCodarticulocom(): ?int
  77.     {
  78.         return $this->codarticulocom;
  79.     }
  80.     public function setCodarticulocom(int $codarticulocom): self
  81.     {
  82.         $this->codarticulocom $codarticulocom;
  83.         return $this;
  84.     }
  85.     public function getEsarticulo(): ?int
  86.     {
  87.         return $this->esarticulo;
  88.     }
  89.     public function setEsarticulo(?int $esarticulo): self
  90.     {
  91.         $this->esarticulo $esarticulo;
  92.         return $this;
  93.     }
  94.     public function getDosis(): ?float
  95.     {
  96.         return $this->dosis;
  97.     }
  98.     public function setDosis(?float $dosis): self
  99.     {
  100.         $this->dosis $dosis;
  101.         return $this;
  102.     }
  103.     public function getIncprecio(): ?float
  104.     {
  105.         return $this->incprecio;
  106.     }
  107.     public function setIncprecio(?float $incprecio): self
  108.     {
  109.         $this->incprecio $incprecio;
  110.         return $this;
  111.     }
  112.     public function getPosicion(): ?int
  113.     {
  114.         return $this->posicion;
  115.     }
  116.     public function setPosicion(?int $posicion): self
  117.     {
  118.         $this->posicion $posicion;
  119.         return $this;
  120.     }
  121.     public function getPredeterminado(): ?bool
  122.     {
  123.         return $this->predeterminado;
  124.     }
  125.     public function setPredeterminado(?bool $predeterminado): self
  126.     {
  127.         $this->predeterminado $predeterminado;
  128.         return $this;
  129.     }
  130.     public function getCodformato(): ?int
  131.     {
  132.         return $this->codformato;
  133.     }
  134.     public function setCodformato(?int $codformato): self
  135.     {
  136.         $this->codformato $codformato;
  137.         return $this;
  138.     }
  139.     public function getEsdto(): ?bool
  140.     {
  141.         return $this->esdto;
  142.     }
  143.     public function setEsdto(?bool $esdto): self
  144.     {
  145.         $this->esdto $esdto;
  146.         return $this;
  147.     }
  148.     public function isPredeterminado(): ?bool
  149.     {
  150.         return $this->predeterminado;
  151.     }
  152.     public function isEsdto(): ?bool
  153.     {
  154.         return $this->esdto;
  155.     }
  156. }