189 lines
5.5 KiB
C#
189 lines
5.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class recibos
|
|
{
|
|
public int idRecibo { get; set; }
|
|
|
|
public string? NumeroRecibo { get; set; }
|
|
|
|
public int? idAgente { get; set; }
|
|
|
|
public int? idSubagente { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla recibos
|
|
/// </summary>
|
|
public int? idReciboAsociado { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla enumeraciones
|
|
/// </summary>
|
|
public int? idTipoPago { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla remesa
|
|
/// </summary>
|
|
public int? idRemesa { get; set; }
|
|
|
|
public int? idDuracion { get; set; }
|
|
|
|
public int idTipo { get; set; }
|
|
|
|
public DateOnly? FechaExpedicion { get; set; }
|
|
|
|
public DateOnly FechaEfecto { get; set; }
|
|
|
|
public DateOnly FechaVencimiento { get; set; }
|
|
|
|
public DateOnly? FechaPago { get; set; }
|
|
|
|
public DateOnly? FechaDevolucionBanco { get; set; }
|
|
|
|
public int? idCausaDevolucion { get; set; }
|
|
|
|
public DateOnly? FechaBaja { get; set; }
|
|
|
|
public int? idCausaBaja { get; set; }
|
|
|
|
public DateOnly? FechaFacturacion { get; set; }
|
|
|
|
public DateOnly? FechaCartaRemesaCobroDirecto { get; set; }
|
|
|
|
public DateOnly? FechaCartaDevuelto { get; set; }
|
|
|
|
public DateOnly? FechaCartaImperativoLegal { get; set; }
|
|
|
|
public DateOnly? FechaCartaAvisoAgente { get; set; }
|
|
|
|
public DateOnly? FechaCartaEnvioRecibo { get; set; }
|
|
|
|
public DateOnly? FechaImpresionTalon { get; set; }
|
|
|
|
public DateOnly? FechaImpresionRecibo { get; set; }
|
|
|
|
public string? Observaciones { get; set; }
|
|
|
|
public double? PrimaNeta { get; set; }
|
|
|
|
public double? BonificacionORecargo { get; set; }
|
|
|
|
public double? Consorcio { get; set; }
|
|
|
|
public double? Impuesto { get; set; }
|
|
|
|
public double? RecargoExterno { get; set; }
|
|
|
|
public double? TotalRecibo { get; set; }
|
|
|
|
public double? ComisionReciboPrimaNeta { get; set; }
|
|
|
|
public double? PorcentajeReciboPrimaNeta { get; set; }
|
|
|
|
public double? TotalComision { get; set; }
|
|
|
|
public double? PorcentajeComisionAgente { get; set; }
|
|
|
|
public double? ComisionAgente { get; set; }
|
|
|
|
public double? ComisionAsegasaPrimaNeta { get; set; }
|
|
|
|
public double? AsegasaRecargoExterno { get; set; }
|
|
|
|
public double? AsegasaComisionConsorcio { get; set; }
|
|
|
|
public double? AsegasaComisionTotal { get; set; }
|
|
|
|
public string? IBAN { get; set; }
|
|
|
|
public int idPoliza { get; set; }
|
|
|
|
public double? BaseComisionAgente { get; set; }
|
|
|
|
public double? PorcentajeBaseComisionAgente { get; set; }
|
|
|
|
public double? PorcentajeComisionPrevista { get; set; }
|
|
|
|
public double? ComisionPrevista { get; set; }
|
|
|
|
public int? idSituacion { get; set; }
|
|
|
|
public DateOnly? FechaRecepcionCia { get; set; }
|
|
|
|
public string? CodigoRecibo { get; set; }
|
|
|
|
public int? idUsuario { get; set; }
|
|
|
|
public int? OrigenRecibo { get; set; }
|
|
|
|
public int? idFicheroCompania { get; set; }
|
|
|
|
public double? ComisionPrevistaAsegasa { get; set; }
|
|
|
|
public double? Sobrecomision { get; set; }
|
|
|
|
public double? Libre1 { get; set; }
|
|
|
|
public int? idAsientoFacturacion { get; set; }
|
|
|
|
public int? idAsientoDevueltoBanco { get; set; }
|
|
|
|
public DateOnly? FechaAsientoDevueltoBanco { get; set; }
|
|
|
|
public DateTime? FechaModificacion { get; set; }
|
|
|
|
public DateOnly? FechaUltimaLiquidacionAgente { get; set; }
|
|
|
|
public virtual ICollection<recibos> InverseidReciboAsociadoNavigation { get; set; } = new List<recibos>();
|
|
|
|
public virtual ICollection<amortizacionrecibos> amortizacionrecibos { get; set; } = new List<amortizacionrecibos>();
|
|
|
|
public virtual ICollection<documentospolizassg> documentospolizassg { get; set; } = new List<documentospolizassg>();
|
|
|
|
public virtual ICollection<expedientesrecibos> expedientesrecibos { get; set; } = new List<expedientesrecibos>();
|
|
|
|
public virtual ICollection<gestionesrecibos> gestionesrecibos { get; set; } = new List<gestionesrecibos>();
|
|
|
|
public virtual agentes? idAgenteNavigation { get; set; }
|
|
|
|
public virtual asientos? idAsientoDevueltoBancoNavigation { get; set; }
|
|
|
|
public virtual asientos? idAsientoFacturacionNavigation { get; set; }
|
|
|
|
public virtual enumeraciones? idCausaBajaNavigation { get; set; }
|
|
|
|
public virtual enumeraciones? idCausaDevolucionNavigation { get; set; }
|
|
|
|
public virtual enumeraciones? idDuracionNavigation { get; set; }
|
|
|
|
public virtual ficheroscompanias? idFicheroCompaniaNavigation { get; set; }
|
|
|
|
public virtual polizassg idPolizaNavigation { get; set; } = null!;
|
|
|
|
public virtual recibos? idReciboAsociadoNavigation { get; set; }
|
|
|
|
public virtual remesas? idRemesaNavigation { get; set; }
|
|
|
|
public virtual enumeraciones? idSituacionNavigation { get; set; }
|
|
|
|
public virtual subagentes? idSubagenteNavigation { get; set; }
|
|
|
|
public virtual enumeraciones idTipoNavigation { get; set; } = null!;
|
|
|
|
public virtual enumeraciones? idTipoPagoNavigation { get; set; }
|
|
|
|
public virtual usuarios? idUsuarioNavigation { get; set; }
|
|
|
|
public virtual ICollection<liquidacionesagenterecibos> liquidacionesagenterecibos { get; set; } = new List<liquidacionesagenterecibos>();
|
|
|
|
public virtual ICollection<liquidacionescompaniasrecibos> liquidacionescompaniasrecibos { get; set; } = new List<liquidacionescompaniasrecibos>();
|
|
|
|
public virtual ICollection<pagostelematicos> pagostelematicos { get; set; } = new List<pagostelematicos>();
|
|
|
|
public virtual ICollection<regularizacionespagosagentes> regularizacionespagosagentes { get; set; } = new List<regularizacionespagosagentes>();
|
|
}
|