src/Entity/Impuestos.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.  * Impuestos
  7.  *
  8.  * @ORM\Table(name="impuestos", options={"readOnly": true})
  9.  * @ORM\Entity
  10.  */
  11. class Impuestos
  12. {
  13.     /**
  14.      * @var int
  15.      *
  16.      * @ORM\id
  17.      * @ORM\Column(name="TIPOIVA", type="integer", nullable=false)
  18.      */
  19.     private $tipoiva;
  20.     /**
  21.      * @var string|null
  22.      *
  23.      * @ORM\Column(name="DESCRIPCION", type="string", length=50, nullable=true, options={"default"="NULL"})
  24.      */
  25.     private $descripcion 'NULL';
  26.     /**
  27.      * @var float|null
  28.      *
  29.      * @ORM\Column(name="IVA", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  30.      */
  31.     private $iva NULL;
  32.     /**
  33.      * @var float|null
  34.      *
  35.      * @ORM\Column(name="REQ", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  36.      */
  37.     private $req NULL;
  38.     /**
  39.      * @var float|null
  40.      *
  41.      * @ORM\Column(name="CUOTA", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  42.      */
  43.     private $cuota NULL;
  44.     /**
  45.      * @var string|null
  46.      *
  47.      * @ORM\Column(name="CUENTAIVAREP", type="string", length=12, nullable=true, options={"default"="NULL"})
  48.      */
  49.     private $cuentaivarep 'NULL';
  50.     /**
  51.      * @var string|null
  52.      *
  53.      * @ORM\Column(name="CUENTAIVASOP", type="string", length=12, nullable=true, options={"default"="NULL"})
  54.      */
  55.     private $cuentaivasop 'NULL';
  56.     /**
  57.      * @var string|null
  58.      *
  59.      * @ORM\Column(name="CUENTARECREP", type="string", length=12, nullable=true, options={"default"="NULL"})
  60.      */
  61.     private $cuentarecrep 'NULL';
  62.     /**
  63.      * @var string|null
  64.      *
  65.      * @ORM\Column(name="CUENTARECSOP", type="string", length=12, nullable=true, options={"default"="NULL"})
  66.      */
  67.     private $cuentarecsop 'NULL';
  68.     /**
  69.      * @var int|null
  70.      *
  71.      * @ORM\Column(name="APLICACIONTASA2", type="integer", nullable=true, options={"default"="NULL"})
  72.      */
  73.     private $aplicaciontasa2 NULL;
  74.     /**
  75.      * @var int|null
  76.      *
  77.      * @ORM\Column(name="TIPOIVARELACIONADO", type="integer", nullable=true, options={"default"="NULL"})
  78.      */
  79.     private $tipoivarelacionado NULL;
  80.     /**
  81.      * @var string|null
  82.      *
  83.      * @ORM\Column(name="VERSION", type="blob", length=16777215, nullable=true, options={"default"="NULL"})
  84.      */
  85.     private $version 'NULL';
  86.     /**
  87.      * @var string|null
  88.      *
  89.      * @ORM\Column(name="CODIGOIMPUESTO", type="string", length=10, nullable=true, options={"default"="NULL"})
  90.      */
  91.     private $codigoimpuesto 'NULL';
  92.     /**
  93.      * @var \DateTime|null
  94.      *
  95.      * @ORM\Column(name="FUTURODESDE1", type="datetime", nullable=true, options={"default"="NULL"})
  96.      */
  97.     private $futurodesde1 'NULL';
  98.     /**
  99.      * @var float|null
  100.      *
  101.      * @ORM\Column(name="FUTUROIVA1", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  102.      */
  103.     private $futuroiva1 NULL;
  104.     /**
  105.      * @var float|null
  106.      *
  107.      * @ORM\Column(name="FUTUROREQ1", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  108.      */
  109.     private $futuroreq1 NULL;
  110.     /**
  111.      * @var \DateTime|null
  112.      *
  113.      * @ORM\Column(name="FUTURODESDE2", type="datetime", nullable=true, options={"default"="NULL"})
  114.      */
  115.     private $futurodesde2 'NULL';
  116.     /**
  117.      * @var float|null
  118.      *
  119.      * @ORM\Column(name="FUTUROIVA2", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  120.      */
  121.     private $futuroiva2 NULL;
  122.     /**
  123.      * @var float|null
  124.      *
  125.      * @ORM\Column(name="FUTUROREQ2", type="float", precision=10, scale=0, nullable=true, options={"default"="NULL"})
  126.      */
  127.     private $futuroreq2 NULL;
  128.     /**
  129.      * @var string|null
  130.      *
  131.      * @ORM\Column(name="CUENTAIVASOPDEVOL", type="string", length=12, nullable=true, options={"default"="NULL"})
  132.      */
  133.     private $cuentaivasopdevol 'NULL';
  134.     /**
  135.      * @var string|null
  136.      *
  137.      * @ORM\Column(name="CUENTAIVAREPDEVOL", type="string", length=12, nullable=true, options={"default"="NULL"})
  138.      */
  139.     private $cuentaivarepdevol 'NULL';
  140.     /**
  141.      * @var string|null
  142.      *
  143.      * @ORM\Column(name="MOTEXENCION", type="string", length=3, nullable=true, options={"default"="NULL"})
  144.      */
  145.     private $motexencion 'NULL';
  146.     /**
  147.      * @var int|null
  148.      *
  149.      * @ORM\Column(name="TIPO_IMPUESTO_AENA", type="integer", nullable=true, options={"default"="NULL"})
  150.      */
  151.     private $tipoImpuestoAena NULL;
  152.     /**
  153.      * @var string|null
  154.      *
  155.      * @ORM\Column(name="DESC_TIPO_IMPUESTO_AENA", type="string", length=30, nullable=true, options={"default"="NULL"})
  156.      */
  157.     private $descTipoImpuestoAena 'NULL';
  158.     /**
  159.      * @var int|null
  160.      *
  161.      * @ORM\Column(name="CODGRUPO", type="integer", nullable=true, options={"default"="NULL"})
  162.      */
  163.     private $codgrupo NULL;
  164.     /**
  165.      * @var string|null
  166.      *
  167.      * @ORM\Column(name="ESPACIOFISCAL", type="string", length=10, nullable=true, options={"default"="NULL"})
  168.      */
  169.     private $espaciofiscal 'NULL';
  170.     public function getTipoiva(): ?int
  171.     {
  172.         return $this->tipoiva;
  173.     }
  174.     public function setTipoiva(int $tipoiva): self
  175.     {
  176.         $this->tipoiva $tipoiva;
  177.         return $this;
  178.     }
  179.     public function getDescripcion(): ?string
  180.     {
  181.         return $this->descripcion;
  182.     }
  183.     public function setDescripcion(?string $descripcion): self
  184.     {
  185.         $this->descripcion $descripcion;
  186.         return $this;
  187.     }
  188.     public function getIva(): ?float
  189.     {
  190.         return $this->iva;
  191.     }
  192.     public function setIva(?float $iva): self
  193.     {
  194.         $this->iva $iva;
  195.         return $this;
  196.     }
  197.     public function getReq(): ?float
  198.     {
  199.         return $this->req;
  200.     }
  201.     public function setReq(?float $req): self
  202.     {
  203.         $this->req $req;
  204.         return $this;
  205.     }
  206.     public function getCuota(): ?float
  207.     {
  208.         return $this->cuota;
  209.     }
  210.     public function setCuota(?float $cuota): self
  211.     {
  212.         $this->cuota $cuota;
  213.         return $this;
  214.     }
  215.     public function getCuentaivarep(): ?string
  216.     {
  217.         return $this->cuentaivarep;
  218.     }
  219.     public function setCuentaivarep(?string $cuentaivarep): self
  220.     {
  221.         $this->cuentaivarep $cuentaivarep;
  222.         return $this;
  223.     }
  224.     public function getCuentaivasop(): ?string
  225.     {
  226.         return $this->cuentaivasop;
  227.     }
  228.     public function setCuentaivasop(?string $cuentaivasop): self
  229.     {
  230.         $this->cuentaivasop $cuentaivasop;
  231.         return $this;
  232.     }
  233.     public function getCuentarecrep(): ?string
  234.     {
  235.         return $this->cuentarecrep;
  236.     }
  237.     public function setCuentarecrep(?string $cuentarecrep): self
  238.     {
  239.         $this->cuentarecrep $cuentarecrep;
  240.         return $this;
  241.     }
  242.     public function getCuentarecsop(): ?string
  243.     {
  244.         return $this->cuentarecsop;
  245.     }
  246.     public function setCuentarecsop(?string $cuentarecsop): self
  247.     {
  248.         $this->cuentarecsop $cuentarecsop;
  249.         return $this;
  250.     }
  251.     public function getAplicaciontasa2(): ?int
  252.     {
  253.         return $this->aplicaciontasa2;
  254.     }
  255.     public function setAplicaciontasa2(?int $aplicaciontasa2): self
  256.     {
  257.         $this->aplicaciontasa2 $aplicaciontasa2;
  258.         return $this;
  259.     }
  260.     public function getTipoivarelacionado(): ?int
  261.     {
  262.         return $this->tipoivarelacionado;
  263.     }
  264.     public function setTipoivarelacionado(?int $tipoivarelacionado): self
  265.     {
  266.         $this->tipoivarelacionado $tipoivarelacionado;
  267.         return $this;
  268.     }
  269.     public function getVersion()
  270.     {
  271.         return $this->version;
  272.     }
  273.     public function setVersion($version): self
  274.     {
  275.         $this->version $version;
  276.         return $this;
  277.     }
  278.     public function getCodigoimpuesto(): ?string
  279.     {
  280.         return $this->codigoimpuesto;
  281.     }
  282.     public function setCodigoimpuesto(?string $codigoimpuesto): self
  283.     {
  284.         $this->codigoimpuesto $codigoimpuesto;
  285.         return $this;
  286.     }
  287.     public function getFuturodesde1(): ?\DateTimeInterface
  288.     {
  289.         return $this->futurodesde1;
  290.     }
  291.     public function setFuturodesde1(?\DateTimeInterface $futurodesde1): self
  292.     {
  293.         $this->futurodesde1 $futurodesde1;
  294.         return $this;
  295.     }
  296.     public function getFuturoiva1(): ?float
  297.     {
  298.         return $this->futuroiva1;
  299.     }
  300.     public function setFuturoiva1(?float $futuroiva1): self
  301.     {
  302.         $this->futuroiva1 $futuroiva1;
  303.         return $this;
  304.     }
  305.     public function getFuturoreq1(): ?float
  306.     {
  307.         return $this->futuroreq1;
  308.     }
  309.     public function setFuturoreq1(?float $futuroreq1): self
  310.     {
  311.         $this->futuroreq1 $futuroreq1;
  312.         return $this;
  313.     }
  314.     public function getFuturodesde2(): ?\DateTimeInterface
  315.     {
  316.         return $this->futurodesde2;
  317.     }
  318.     public function setFuturodesde2(?\DateTimeInterface $futurodesde2): self
  319.     {
  320.         $this->futurodesde2 $futurodesde2;
  321.         return $this;
  322.     }
  323.     public function getFuturoiva2(): ?float
  324.     {
  325.         return $this->futuroiva2;
  326.     }
  327.     public function setFuturoiva2(?float $futuroiva2): self
  328.     {
  329.         $this->futuroiva2 $futuroiva2;
  330.         return $this;
  331.     }
  332.     public function getFuturoreq2(): ?float
  333.     {
  334.         return $this->futuroreq2;
  335.     }
  336.     public function setFuturoreq2(?float $futuroreq2): self
  337.     {
  338.         $this->futuroreq2 $futuroreq2;
  339.         return $this;
  340.     }
  341.     public function getCuentaivasopdevol(): ?string
  342.     {
  343.         return $this->cuentaivasopdevol;
  344.     }
  345.     public function setCuentaivasopdevol(?string $cuentaivasopdevol): self
  346.     {
  347.         $this->cuentaivasopdevol $cuentaivasopdevol;
  348.         return $this;
  349.     }
  350.     public function getCuentaivarepdevol(): ?string
  351.     {
  352.         return $this->cuentaivarepdevol;
  353.     }
  354.     public function setCuentaivarepdevol(?string $cuentaivarepdevol): self
  355.     {
  356.         $this->cuentaivarepdevol $cuentaivarepdevol;
  357.         return $this;
  358.     }
  359.     public function getMotexencion(): ?string
  360.     {
  361.         return $this->motexencion;
  362.     }
  363.     public function setMotexencion(?string $motexencion): self
  364.     {
  365.         $this->motexencion $motexencion;
  366.         return $this;
  367.     }
  368.     public function getTipoImpuestoAena(): ?int
  369.     {
  370.         return $this->tipoImpuestoAena;
  371.     }
  372.     public function setTipoImpuestoAena(?int $tipoImpuestoAena): self
  373.     {
  374.         $this->tipoImpuestoAena $tipoImpuestoAena;
  375.         return $this;
  376.     }
  377.     public function getDescTipoImpuestoAena(): ?string
  378.     {
  379.         return $this->descTipoImpuestoAena;
  380.     }
  381.     public function setDescTipoImpuestoAena(?string $descTipoImpuestoAena): self
  382.     {
  383.         $this->descTipoImpuestoAena $descTipoImpuestoAena;
  384.         return $this;
  385.     }
  386.     public function getCodgrupo(): ?int
  387.     {
  388.         return $this->codgrupo;
  389.     }
  390.     public function setCodgrupo(?int $codgrupo): self
  391.     {
  392.         $this->codgrupo $codgrupo;
  393.         return $this;
  394.     }
  395.     public function getEspaciofiscal(): ?string
  396.     {
  397.         return $this->espaciofiscal;
  398.     }
  399.     public function setEspaciofiscal(?string $espaciofiscal): self
  400.     {
  401.         $this->espaciofiscal $espaciofiscal;
  402.         return $this;
  403.     }
  404. }