first commit

This commit is contained in:
2026-02-09 10:55:45 -07:00
commit 7cca957e1a
77 changed files with 44415 additions and 0 deletions

23
Entidades/Documentos.cs Normal file
View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EFCDesk.Entidades
{
public class Documentos
{
public string id { get; set; }
public string organizacion { get; set; }
public string pedimento { get; set; }
public string pedimento_numero { get; set; }
public string archivo { get; set; }
public int document_type { get; set; }
public int size { get; set; }
public string extension { get; set; }
public int fuente { get; set; }
public string created_at { get; set; }
public string updated_at { get; set; }
}
}

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EFCDesk.Entidades
{
// Clase auxiliar para manejar expedientes en memoria
public class ExpedienteInfo
{
public string Expediente { get; set; } = "";
public string Clave { get; set; } = "";
public string Estado { get; set; } = "";
public string FechaCreacion { get; set; } = "";
public string Ruta { get; set; } = "";
public string Ticks { get; set; } = "";
}
}

37
Entidades/Pedimentos.cs Normal file
View File

@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EFCDesk.Entidades
{
public class Pedimentos
{
public string id { get; set; } // Se usa Guid para el campo 'id' que es un UUID
public string? pedimento { get; set; }
public string? pedimento_app { get; set; }
public string? patente { get; set; }
public string? aduana { get; set; }
public string? regimen { get; set; } // Asumí que puede ser opcional, por lo que es un string
public string? clave_pedimento { get; set; }
public string? fecha_inicio { get; set; }
public string? fecha_fin { get; set; }
public string? fecha_pago { get; set; }
public bool alerta { get; set; }
public string? contribuyente { get; set; }
public string? agente_aduanal { get; set; }
public string? curp_apoderado { get; set; }
public string? importe_total { get; set; } // Usé decimal para valores monetarios
public string? saldo_disponible { get; set; }
public string? importe_pedimento { get; set; }
public bool? existe_expediente { get; set; }
public bool? remesas { get; set; }
public int? numero_partidas { get; set; }
public string? numero_operacion { get; set; }
public string? created_at { get; set; }
public string? updated_at { get; set; }
public string? organizacion { get; set; } // Usé Guid para el campo 'organizacion'
public int? tipo_operacion { get; set; }
}
}