src/Entity/ComDescripcionOperacion.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComDescripcionOperacionRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComDescripcionOperacionRepository::class)]
  7. class ComDescripcionOperacion
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $descripcionMercancia null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?array $tipoOperacionARealizar null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $controlExportacion null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $soporteControl null;
  21.     #[ORM\Column(nullabletrue)]
  22.     private ?array $formaPagoComercioExterior null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $otroMedioPagoComercioExterior null;
  25.     #[ORM\ManyToOne(inversedBy'comDescripcionOperacions')]
  26.     private ?ParEstado $estadoSeccion null;
  27.     #[ORM\ManyToOne(inversedBy'comDescripcionOperacions')]
  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 getDescripcionMercancia(): ?string
  42.     {
  43.         return $this->descripcionMercancia;
  44.     }
  45.     public function setDescripcionMercancia(?string $descripcionMercancia): static
  46.     {
  47.         $this->descripcionMercancia $descripcionMercancia;
  48.         return $this;
  49.     }
  50.     public function getTipoOperacionARealizar(): ?array
  51.     {
  52.         return $this->tipoOperacionARealizar;
  53.     }
  54.     public function setTipoOperacionARealizar(?array $tipoOperacionARealizar): static
  55.     {
  56.         $this->tipoOperacionARealizar $tipoOperacionARealizar;
  57.         return $this;
  58.     }
  59.     public function getControlExportacion(): ?string
  60.     {
  61.         return $this->controlExportacion;
  62.     }
  63.     public function setControlExportacion(?string $controlExportacion): static
  64.     {
  65.         $this->controlExportacion $controlExportacion;
  66.         return $this;
  67.     }
  68.     public function getSoporteControl(): ?string
  69.     {
  70.         return $this->soporteControl;
  71.     }
  72.     public function setSoporteControl(?string $soporteControl): static
  73.     {
  74.         $this->soporteControl $soporteControl;
  75.         return $this;
  76.     }
  77.     public function getFormaPagoComercioExterior(): ?array
  78.     {
  79.         return $this->formaPagoComercioExterior;
  80.     }
  81.     public function setFormaPagoComercioExterior(?array $formaPagoComercioExterior): static
  82.     {
  83.         $this->formaPagoComercioExterior $formaPagoComercioExterior;
  84.         return $this;
  85.     }
  86.     public function getOtroMedioPagoComercioExterior(): ?string
  87.     {
  88.         return $this->otroMedioPagoComercioExterior;
  89.     }
  90.     public function setOtroMedioPagoComercioExterior(?string $otroMedioPagoComercioExterior): static
  91.     {
  92.         $this->otroMedioPagoComercioExterior $otroMedioPagoComercioExterior;
  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. }