38 lines
1.6 KiB
C#
38 lines
1.6 KiB
C#
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; }
|
|
}
|
|
}
|