Files
Asegasa.NET/bdAsegasa/db/vf_liquidacionesagentesverifactu.cs

80 lines
1.7 KiB
C#

using System;
using System.Collections.Generic;
using PropertyChanged;
namespace bdAsegasa.db;
[AddINotifyPropertyChangedInterface]
public partial class vf_liquidacionesagentesverifactu
{
public int idLiquidacionAgente { get; set; }
public DateOnly Fecha { get; set; }
public int idTipoLiquidacion { get; set; }
public string? ReferenciaHP { get; set; }
public int BrutoComisiones { get; set; }
public double BaseImponible { get; set; }
public double IVA { get; set; }
public double IRPF { get; set; }
public double Importe { get; set; }
public int? NumeroGeneracion { get; set; }
public int? idFicheroSEPA { get; set; }
public int? idAsiento { get; set; }
public int? IdCorreo { get; set; }
public string? NumeroFactura { get; set; }
public DateOnly? FechaFactura { get; set; }
public int? idAgente { get; set; }
public int? idSerieFactura { get; set; }
public int? idLiquidacionRectificativa { get; set; }
public double? PorcentajeIVA { get; set; }
public int? idRegistro { get; set; }
public int? idRespuestaVerifactu { get; set; }
public int? Operacion { get; set; }
public int? TipoFactura { get; set; }
public DateTime? FechaGeneracion { get; set; }
public int? Estado { get; set; }
public int? idRegistroAnterior { get; set; }
public string? Huella { get; set; }
public DateTime? FechaEncadenado { get; set; }
public string? ErrorVerifactu { get; set; }
public int? Aplicacion { get; set; }
public int? idAplicacion { get; set; }
public string? OtrosDatos { get; set; }
public int? idRegistroCorreccion { get; set; }
public string? Agente { get; set; }
public string? TipoLiquidacion { get; set; }
}