src/Entity/ComCantidadOperacionesComercioExterior.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComCantidadOperacionesComercioExteriorRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComCantidadOperacionesComercioExteriorRepository::class)]
  7. class ComCantidadOperacionesComercioExterior
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(typeTypes::BIGINTnullabletrue)]
  14.     private ?string $importaciones null;
  15.     #[ORM\Column(typeTypes::BIGINTnullabletrue)]
  16.     private ?string $exportaciones null;
  17.     #[ORM\ManyToOne(inversedBy'comCantidadOperacionesComercioExteriors')]
  18.     private ?ParEstado $estadoSeccion null;
  19.     #[ORM\ManyToOne(inversedBy'comCantidadOperacionesComercioExteriors')]
  20.     private ?ComCircular170YPoderes $comCircular170 null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $createAt null;
  23.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  24.     private ?\DateTimeInterface $updateAt null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $createUser null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $updateUser null;
  29.     public function getId(): ?int
  30.     {
  31.         return $this->id;
  32.     }
  33.     public function getImportaciones(): ?string
  34.     {
  35.         return $this->importaciones;
  36.     }
  37.     public function setImportaciones(?string $importaciones): static
  38.     {
  39.         $this->importaciones $importaciones;
  40.         return $this;
  41.     }
  42.     public function getExportaciones(): ?string
  43.     {
  44.         return $this->exportaciones;
  45.     }
  46.     public function setExportaciones(?string $exportaciones): static
  47.     {
  48.         $this->exportaciones $exportaciones;
  49.         return $this;
  50.     }
  51.     public function getEstadoSeccion(): ?ParEstado
  52.     {
  53.         return $this->estadoSeccion;
  54.     }
  55.     public function setEstadoSeccion(?ParEstado $estadoSeccion): static
  56.     {
  57.         $this->estadoSeccion $estadoSeccion;
  58.         return $this;
  59.     }
  60.     public function getComCircular170(): ?ComCircular170YPoderes
  61.     {
  62.         return $this->comCircular170;
  63.     }
  64.     public function setComCircular170(?ComCircular170YPoderes $comCircular170): static
  65.     {
  66.         $this->comCircular170 $comCircular170;
  67.         return $this;
  68.     }
  69.     public function getCreateAt(): ?\DateTimeInterface
  70.     {
  71.         return $this->createAt;
  72.     }
  73.     public function setCreateAt(?\DateTimeInterface $createAt): static
  74.     {
  75.         $this->createAt $createAt;
  76.         return $this;
  77.     }
  78.     public function getUpdateAt(): ?\DateTimeInterface
  79.     {
  80.         return $this->updateAt;
  81.     }
  82.     public function setUpdateAt(?\DateTimeInterface $updateAt): static
  83.     {
  84.         $this->updateAt $updateAt;
  85.         return $this;
  86.     }
  87.     public function getCreateUser(): ?string
  88.     {
  89.         return $this->createUser;
  90.     }
  91.     public function setCreateUser(?string $createUser): static
  92.     {
  93.         $this->createUser $createUser;
  94.         return $this;
  95.     }
  96.     public function getUpdateUser(): ?string
  97.     {
  98.         return $this->updateUser;
  99.     }
  100.     public function setUpdateUser(?string $updateUser): static
  101.     {
  102.         $this->updateUser $updateUser;
  103.         return $this;
  104.     }
  105. }