src/Entity/RFInventarioDocumentalFinanzas.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RFInventarioDocumentalFinanzasRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Table(name'rf_inventario_documental_finanzas')]
  7. #[ORM\Entity(repositoryClassRFInventarioDocumentalFinanzasRepository::class)]
  8. class RFInventarioDocumentalFinanzas {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column]
  14.     private ?float $numeroInicial null;
  15.     #[ORM\Column]
  16.     private ?float $numeroFinal null;
  17.     #[ORM\Column(length50)]
  18.     private ?string $mes null;  
  19.     
  20.     #[ORM\ManyToOne(inversedBy'inventarioDocumentalFinanzas')]
  21.     private ?TerSedeEmpresa $sede null;
  22.     #[ORM\ManyToOne(inversedBy'inventarioDocumentalFinanzas')]
  23.     private ?ParProceso $proceso null;
  24.     #[ORM\Column]
  25.     private ?float $tomo null;
  26.     #[ORM\Column(typeTypes::JSONnullabletrue)]
  27.     private array $folio = [];
  28.     #[ORM\ManyToOne(inversedBy'inventarioDocumentalFinanzas')]
  29.     private ?RFFUID $FUID null;
  30.     #[ORM\ManyToOne(inversedBy'inventarioDocumentalFinanzas')]
  31.     private ?ParEstado $estado null;
  32.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  33.     private ?\DateTimeInterface $createAt null;
  34.     #[ORM\Column(length50)]
  35.     private ?string $createUser null;
  36.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  37.     private ?\DateTimeInterface $updateAt null;
  38.     #[ORM\Column(length50)]
  39.     private ?string $updateUser null;
  40.     #[ORM\ManyToOne(inversedBy'inventarioDocumentalFinanzas')]
  41.     private ?ParTipoUbicacion $tipoUbicacion null;
  42.     #[ORM\Column(length100nullabletrue)]
  43.     private ?string $numeroPosicion null;
  44.     #[ORM\Column(length255nullabletrue)]
  45.     private ?string $archivo null;
  46.     #[ORM\ManyToOne(inversedBy'inventarioDocumentalFinanzas')]
  47.     private ?DocDocumento $documento null;
  48.     #[ORM\ManyToOne(inversedBy'inventarioDocumentalFinanzasDisponibilidad')]
  49.     private ?ParEstado $disponibilidad null;
  50.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  51.     private ?\DateTimeInterface $fechaVencimiento null;
  52.     #[ORM\Column]
  53.     private ?int $ano null;
  54.     #[ORM\Column(length255nullabletrue)]
  55.     private ?string $tipoDocumento null;
  56.     public function getId(): ?int {
  57.         return $this->id;
  58.     }
  59.     public function getNumeroInicial(): ?float {
  60.         return $this->numeroInicial;
  61.     }
  62.     public function setNumeroInicial(float $numeroInicial): static {
  63.         $this->numeroInicial $numeroInicial;
  64.         return $this;
  65.     }
  66.     public function getNumeroFinal(): ?float {
  67.         return $this->numeroFinal;
  68.     }
  69.     public function setNumeroFinal(float $numeroFinal): static {
  70.         $this->numeroFinal $numeroFinal;
  71.         return $this;
  72.     }
  73.     public function getMes(): ?string {
  74.         return $this->mes;
  75.     }
  76.     public function setMes(string $mes): static {
  77.         $this->mes $mes;
  78.         return $this;
  79.     }
  80.     public function getSede(): ?TerSedeEmpresa {
  81.         return $this->sede;
  82.     }
  83.     public function setSede(?TerSedeEmpresa $sede): static {
  84.         $this->sede $sede;
  85.         return $this;
  86.     }
  87.     public function getProceso(): ?ParProceso {
  88.         return $this->proceso;
  89.     }
  90.     public function setProceso(?ParProceso $proceso): static {
  91.         $this->proceso $proceso;
  92.         return $this;
  93.     }
  94.     public function getTomo(): ?float {
  95.         return $this->tomo;
  96.     }
  97.     public function setTomo(float $tomo): static {
  98.         $this->tomo $tomo;
  99.         return $this;
  100.     }
  101.     public function getFolio(): array
  102.     {
  103.         return $this->folio ?? [];
  104.     }
  105.     public function setFolio(array $folio): static
  106.     {
  107.         $this->folio $folio;
  108.         return $this;
  109.     }
  110.     public function getFUID(): ?RFFUID {
  111.         return $this->FUID;
  112.     }
  113.     public function setFUID(?RFFUID $FUID): static {
  114.         $this->FUID $FUID;
  115.         return $this;
  116.     }
  117.     public function getEstado(): ?ParEstado {
  118.         return $this->estado;
  119.     }
  120.     public function setEstado(?ParEstado $estado): static {
  121.         $this->estado $estado;
  122.         return $this;
  123.     }
  124.     public function getCreateAt(): ?\DateTimeInterface {
  125.         return $this->createAt;
  126.     }
  127.     public function setCreateAt(\DateTimeInterface $createAt): static {
  128.         $this->createAt $createAt;
  129.         return $this;
  130.     }
  131.     public function getCreateUser(): ?string {
  132.         return $this->createUser;
  133.     }
  134.     public function setCreateUser(string $createUser): static {
  135.         $this->createUser $createUser;
  136.         return $this;
  137.     }
  138.     public function getUpdateAt(): ?\DateTimeInterface {
  139.         return $this->updateAt;
  140.     }
  141.     public function setUpdateAt(\DateTimeInterface $updateAt): static {
  142.         $this->updateAt $updateAt;
  143.         return $this;
  144.     }
  145.     public function getUpdateUser(): ?string {
  146.         return $this->updateUser;
  147.     }
  148.     public function setUpdateUser(string $updateUser): static {
  149.         $this->updateUser $updateUser;
  150.         return $this;
  151.     }
  152.     public function getTipoUbicacion(): ?ParTipoUbicacion {
  153.         return $this->tipoUbicacion;
  154.     }
  155.     public function setTipoUbicacion(?ParTipoUbicacion $tipoUbicacion): static {
  156.         $this->tipoUbicacion $tipoUbicacion;
  157.         return $this;
  158.     }
  159.     public function getNumeroPosicion(): ?string {
  160.         return $this->numeroPosicion;
  161.     }
  162.     public function setNumeroPosicion(?string $numeroPosicion): static {
  163.         $this->numeroPosicion $numeroPosicion;
  164.         return $this;
  165.     }
  166.     public function getArchivo(): ?string {
  167.         return $this->archivo;
  168.     }
  169.     public function setArchivo(?string $archivo): static {
  170.         $this->archivo $archivo;
  171.         return $this;
  172.     }
  173.     public function getDocumento(): ?DocDocumento {
  174.         return $this->documento;
  175.     }
  176.     public function setDocumento(?DocDocumento $documento): static {
  177.         $this->documento $documento;
  178.         return $this;
  179.     }
  180.     public function getDisponibilidad(): ?ParEstado {
  181.         return $this->disponibilidad;
  182.     }
  183.     public function setDisponibilidad(?ParEstado $disponibilidad): static {
  184.         $this->disponibilidad $disponibilidad;
  185.         return $this;
  186.     }
  187.     
  188.       public function getFechaVencimiento(): ?\DateTimeInterface
  189.     {
  190.         return $this->fechaVencimiento;
  191.     }
  192.     public function setFechaVencimiento(?\DateTimeInterface $fechaVencimiento): static
  193.     {
  194.         $this->fechaVencimiento $fechaVencimiento;
  195.         return $this;
  196.     }
  197.     public function getAno(): ?int
  198.     {
  199.         return $this->ano;
  200.     }
  201.     public function setAno(int $ano): static
  202.     {
  203.         $this->ano $ano;
  204.         return $this;
  205.     }
  206.     public function getTipoDocumento(): ?string
  207.     {
  208.         return $this->tipoDocumento;
  209.     }
  210.     public function setTipoDocumento(?string $tipoDocumento): static
  211.     {
  212.         $this->tipoDocumento $tipoDocumento;
  213.         return $this;
  214.     }
  215. }