192 lines
4.5 KiB
C#
192 lines
4.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class vp_recibosextendidos
|
|
{
|
|
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? idAsientoFacturacion { get; set; }
|
|
|
|
public int? idAsientoDevueltoBanco { get; set; }
|
|
|
|
public DateOnly? FechaAsientoDevueltoBanco { get; set; }
|
|
|
|
public double? Sobrecomision { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla compañia
|
|
/// </summary>
|
|
public int idCompania { get; set; }
|
|
|
|
public string? Compania { get; set; }
|
|
|
|
public string? CodigoCia { get; set; }
|
|
|
|
public string? Ramo { get; set; }
|
|
|
|
public string? FamiliaRamo { get; set; }
|
|
|
|
public string? Tomador { get; set; }
|
|
|
|
public string? CIFTomador { get; set; }
|
|
|
|
public string? Telefono1Tomador { get; set; }
|
|
|
|
public string? Telefono2Tomador { get; set; }
|
|
|
|
public string? EmailTomador { get; set; }
|
|
|
|
public DateOnly? FechaMandato { get; set; }
|
|
|
|
public string? CuentaContableTomador { get; set; }
|
|
|
|
public string? ObservacionesPoliza { get; set; }
|
|
|
|
public string? CausaBaja { get; set; }
|
|
|
|
public string? Situacion { get; set; }
|
|
|
|
public string? TipoRecibo { get; set; }
|
|
|
|
public string? TipoPago { get; set; }
|
|
|
|
public string? NumeroPoliza { get; set; }
|
|
|
|
public int NumeroSuplemento { get; set; }
|
|
|
|
public string? BienesAsegurados { get; set; }
|
|
|
|
public string? Matricula { get; set; }
|
|
|
|
public string? Coberturas { get; set; }
|
|
|
|
public string? CodigoAgente { get; set; }
|
|
|
|
public string? Agente { get; set; }
|
|
|
|
public double? IRPFAgente { get; set; }
|
|
|
|
public string? SubAgenteSuperior { get; set; }
|
|
|
|
public string Oficina { get; set; } = null!;
|
|
|
|
public string? SubAgente { get; set; }
|
|
|
|
public string? CodigoSubAgente { get; set; }
|
|
|
|
public string? CodigoCausaDevolucion { get; set; }
|
|
|
|
public DateOnly? FechaRemesa { get; set; }
|
|
}
|