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

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; }
}
}