Primera versión estable compatible con linux de WSAsegasa
This commit is contained in:
68
bdAsegasa/db/vf_siniestros_estadisticas.cs
Normal file
68
bdAsegasa/db/vf_siniestros_estadisticas.cs
Normal file
@@ -0,0 +1,68 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdAsegasa.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class vf_siniestros_estadisticas
|
||||
{
|
||||
public int idSiniestro { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// tabla enumeraciones
|
||||
/// </summary>
|
||||
public int? idCulpa { get; set; }
|
||||
|
||||
public string? Culpa { get; set; }
|
||||
|
||||
public DateOnly? FechaAccidente { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// tabla enumeraciones
|
||||
/// </summary>
|
||||
public int? idTramitacion { get; set; }
|
||||
|
||||
public DateOnly? FechaCierre { get; set; }
|
||||
|
||||
public bool PendienteDeCobro { get; set; }
|
||||
|
||||
public double? CantidadPagarAsegasa { get; set; }
|
||||
|
||||
public DateTime? FechaAlta { 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? CodigoAgente { get; set; }
|
||||
|
||||
public string? Agente { get; set; }
|
||||
|
||||
public string? Oficina { get; set; }
|
||||
|
||||
public string? CodigoSubAgente { get; set; }
|
||||
|
||||
public string? SubAgente { get; set; }
|
||||
|
||||
public long? NumeroGestiones { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user