src/Entity/ComBancoIntermediario.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ComBancoIntermediarioRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassComBancoIntermediarioRepository::class)]
  7. class ComBancoIntermediario
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255nullabletrue)]
  14.     private ?string $entidadFinancieraEmisora null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $oficina null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $ciudadRegistradaEnCuenta null;
  19.     #[ORM\Column(typeTypes::BIGINTnullabletrue)]
  20.     private ?string $numeroCuenta null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $tipoCuenta null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $origenEconomicoOperacion null;
  25.     #[ORM\ManyToOne(inversedBy'comBancoIntermediarios')]
  26.     private ?ParEstado $estadoSeccion null;
  27.     #[ORM\ManyToOne(inversedBy'comBancoIntermediarios')]
  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 getEntidadFinancieraEmisora(): ?string
  42.     {
  43.         return $this->entidadFinancieraEmisora;
  44.     }
  45.     public function setEntidadFinancieraEmisora(?string $entidadFinancieraEmisora): static
  46.     {
  47.         $this->entidadFinancieraEmisora $entidadFinancieraEmisora;
  48.         return $this;
  49.     }
  50.     public function getOficina(): ?string
  51.     {
  52.         return $this->oficina;
  53.     }
  54.     public function setOficina(?string $oficina): static
  55.     {
  56.         $this->oficina $oficina;
  57.         return $this;
  58.     }
  59.     public function getCiudadRegistradaEnCuenta(): ?string
  60.     {
  61.         return $this->ciudadRegistradaEnCuenta;
  62.     }
  63.     public function setCiudadRegistradaEnCuenta(?string $ciudadRegistradaEnCuenta): static
  64.     {
  65.         $this->ciudadRegistradaEnCuenta $ciudadRegistradaEnCuenta;
  66.         return $this;
  67.     }
  68.     public function getNumeroCuenta(): ?string
  69.     {
  70.         return $this->numeroCuenta;
  71.     }
  72.     public function setNumeroCuenta(?string $numeroCuenta): static
  73.     {
  74.         $this->numeroCuenta $numeroCuenta;
  75.         return $this;
  76.     }
  77.     public function getTipoCuenta(): ?string
  78.     {
  79.         return $this->tipoCuenta;
  80.     }
  81.     public function setTipoCuenta(?string $tipoCuenta): static
  82.     {
  83.         $this->tipoCuenta $tipoCuenta;
  84.         return $this;
  85.     }
  86.     public function getOrigenEconomicoOperacion(): ?string
  87.     {
  88.         return $this->origenEconomicoOperacion;
  89.     }
  90.     public function setOrigenEconomicoOperacion(?string $origenEconomicoOperacion): static
  91.     {
  92.         $this->origenEconomicoOperacion $origenEconomicoOperacion;
  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. }