119 lines
2.8 KiB
C#
119 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class vf_liquidacionesagentes_estadisticas
|
|
{
|
|
public int idliquidacionesagenterecibo { get; set; }
|
|
|
|
public int? NumeroLiquidacion { get; set; }
|
|
|
|
public double? ImporteLiquidado { get; set; }
|
|
|
|
public DateOnly? FechaLiquidacion { get; set; }
|
|
|
|
public int? idRecibo { get; set; }
|
|
|
|
public string? CodigoRecibo { get; set; }
|
|
|
|
public DateOnly? FechaEfecto { get; set; }
|
|
|
|
public DateOnly? FechaVencimiento { get; set; }
|
|
|
|
public DateOnly? FechaPago { get; set; }
|
|
|
|
public DateOnly? FechaDevolucionBanco { get; set; }
|
|
|
|
public DateOnly? FechaBaja { get; set; }
|
|
|
|
public DateOnly? FechaFacturacion { get; set; }
|
|
|
|
public double? TotalRecibo { get; set; }
|
|
|
|
public double? ComisionReciboPrimaNeta { get; set; }
|
|
|
|
public double? TotalComision { get; set; }
|
|
|
|
public double? ComisionAgente { get; set; }
|
|
|
|
public double? ComisionAsegasaPrimaNeta { get; set; }
|
|
|
|
public double? ComisionPrevista { get; set; }
|
|
|
|
public double? AsegasaComisionTotal { get; set; }
|
|
|
|
public double? TotalReciboAnulado { get; set; }
|
|
|
|
public double? ComisionReciboPrimaNetaAnulado { get; set; }
|
|
|
|
public double? TotalComisionAnulado { get; set; }
|
|
|
|
public double? ComisionAgenteAnulado { get; set; }
|
|
|
|
public double? ComisionAsegasaPrimaNetaAnulado { get; set; }
|
|
|
|
public double? ComisionPrevistaAnulado { get; set; }
|
|
|
|
public double? AsegasaComisionTotalAnulado { get; set; }
|
|
|
|
public int? EsRecibo { get; set; }
|
|
|
|
public int? EsAnulacion { get; set; }
|
|
|
|
public string? Compania { get; set; }
|
|
|
|
public string? CodigoCia { get; set; }
|
|
|
|
/// <summary>
|
|
/// tabla ramos
|
|
/// </summary>
|
|
public int? idRamo { 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 string? CausaBaja { get; set; }
|
|
|
|
public bool? CausaBajaOculta { get; set; }
|
|
|
|
public string? TipoRecibo { get; set; }
|
|
|
|
public string? TipoProduccion { get; set; }
|
|
|
|
public string? NumeroPoliza { get; set; }
|
|
|
|
public string? CiaNumeroPoliza { get; set; }
|
|
|
|
public int? NumeroSuplemento { get; set; }
|
|
|
|
public string? CodigoAgente { get; set; }
|
|
|
|
public int? idAgente { get; set; }
|
|
|
|
public string? Agente { get; set; }
|
|
|
|
public string? SubAgenteSuperior { get; set; }
|
|
|
|
public string? Oficina { get; set; }
|
|
|
|
public string? SubAgente { get; set; }
|
|
|
|
public string? CodigoSubAgente { get; set; }
|
|
|
|
public string? CodigoCausaDevolucion { get; set; }
|
|
}
|