src/Entity/ComInformacionTributaria.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComInformacionTributariaRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComInformacionTributariaRepository::class)]
  7. class ComInformacionTributaria
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $granContribuyente null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $operadorEconomicoAutorizado null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $usuarioAduaneroTramite null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $agenteDiplomatico null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $menajes null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $aceptacionTratamientoDatos null;
  25.     #[ORM\ManyToOne(inversedBy'comInformacionTributarias')]
  26.     private ?ParEstado $estadoSeccion null;
  27.     #[ORM\ManyToOne(inversedBy'comInformacionTributarias')]
  28.     private ?ComCircular170YPoderes $comCircular170 null;
  29.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  30.     private ?\DateTimeInterface $createAt null;
  31.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  32.     private ?\DateTimeInterface $updateAt null;
  33.     #[ORM\Column(length255nullabletrue)]
  34.     private ?string $createUser null;
  35.     #[ORM\Column(length255nullabletrue)]
  36.     private ?string $updateUser null;
  37.     public function getId(): ?int
  38.     {
  39.         return $this->id;
  40.     }
  41.     public function getGranContribuyente(): ?string
  42.     {
  43.         return $this->granContribuyente;
  44.     }
  45.     public function setGranContribuyente(?string $granContribuyente): static
  46.     {
  47.         $this->granContribuyente $granContribuyente;
  48.         return $this;
  49.     }
  50.     public function getOperadorEconomicoAutorizado(): ?string
  51.     {
  52.         return $this->operadorEconomicoAutorizado;
  53.     }
  54.     public function setOperadorEconomicoAutorizado(?string $operadorEconomicoAutorizado): static
  55.     {
  56.         $this->operadorEconomicoAutorizado $operadorEconomicoAutorizado;
  57.         return $this;
  58.     }
  59.     public function getUsuarioAduaneroTramite(): ?string
  60.     {
  61.         return $this->usuarioAduaneroTramite;
  62.     }
  63.     public function setUsuarioAduaneroTramite(?string $usuarioAduaneroTramite): static
  64.     {
  65.         $this->usuarioAduaneroTramite $usuarioAduaneroTramite;
  66.         return $this;
  67.     }
  68.     public function getAgenteDiplomatico(): ?string
  69.     {
  70.         return $this->agenteDiplomatico;
  71.     }
  72.     public function setAgenteDiplomatico(?string $agenteDiplomatico): static
  73.     {
  74.         $this->agenteDiplomatico $agenteDiplomatico;
  75.         return $this;
  76.     }
  77.     public function getMenajes(): ?string
  78.     {
  79.         return $this->menajes;
  80.     }
  81.     public function setMenajes(?string $menajes): static
  82.     {
  83.         $this->menajes $menajes;
  84.         return $this;
  85.     }
  86.     public function getAceptacionTratamientoDatos(): ?string
  87.     {
  88.         return $this->aceptacionTratamientoDatos;
  89.     }
  90.     public function setAceptacionTratamientoDatos(?string $aceptacionTratamientoDatos): static
  91.     {
  92.         $this->aceptacionTratamientoDatos $aceptacionTratamientoDatos;
  93.         return $this;
  94.     }
  95.     public function getEstadoSeccion(): ?ParEstado
  96.     {
  97.         return $this->estadoSeccion;
  98.     }
  99.     public function setEstadoSeccion(?ParEstado $estadoSeccion): static
  100.     {
  101.         $this->estadoSeccion $estadoSeccion;
  102.         return $this;
  103.     }
  104.     public function getComCircular170(): ?ComCircular170YPoderes
  105.     {
  106.         return $this->comCircular170;
  107.     }
  108.     public function setComCircular170(?ComCircular170YPoderes $comCircular170): static
  109.     {
  110.         $this->comCircular170 $comCircular170;
  111.         return $this;
  112.     }
  113.     public function getCreateAt(): ?\DateTimeInterface
  114.     {
  115.         return $this->createAt;
  116.     }
  117.     public function setCreateAt(?\DateTimeInterface $createAt): static
  118.     {
  119.         $this->createAt $createAt;
  120.         return $this;
  121.     }
  122.     public function getUpdateAt(): ?\DateTimeInterface
  123.     {
  124.         return $this->updateAt;
  125.     }
  126.     public function setUpdateAt(?\DateTimeInterface $updateAt): static
  127.     {
  128.         $this->updateAt $updateAt;
  129.         return $this;
  130.     }
  131.     public function getCreateUser(): ?string
  132.     {
  133.         return $this->createUser;
  134.     }
  135.     public function setCreateUser(?string $createUser): static
  136.     {
  137.         $this->createUser $createUser;
  138.         return $this;
  139.     }
  140.     public function getUpdateUser(): ?string
  141.     {
  142.         return $this->updateUser;
  143.     }
  144.     public function setUpdateUser(?string $updateUser): static
  145.     {
  146.         $this->updateUser $updateUser;
  147.         return $this;
  148.     }
  149. }