Primera versión estable compatible con linux de WSAsegasa
This commit is contained in:
55
bdAsegasa/db/vf_siniestros_eiac_extendidos.cs
Normal file
55
bdAsegasa/db/vf_siniestros_eiac_extendidos.cs
Normal file
@@ -0,0 +1,55 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using PropertyChanged;
|
||||
|
||||
namespace bdAsegasa.db;
|
||||
|
||||
[AddINotifyPropertyChangedInterface]
|
||||
public partial class vf_siniestros_eiac_extendidos
|
||||
{
|
||||
public int idSiniestroEIAC { get; set; }
|
||||
|
||||
public int? idSiniestro { get; set; }
|
||||
|
||||
public int? idPoliza { get; set; }
|
||||
|
||||
public string NumeroPoliza { get; set; } = null!;
|
||||
|
||||
public string? NumeroSuplemento { get; set; }
|
||||
|
||||
public int? idFicheroCompania { get; set; }
|
||||
|
||||
public string idSiniestroEntidad { get; set; } = null!;
|
||||
|
||||
public DateTime FechaDeclaracion { get; set; }
|
||||
|
||||
public DateTime FechaOcurrencia { get; set; }
|
||||
|
||||
public int PosicionSiniestro { get; set; }
|
||||
|
||||
public string DescripcionSiniestro { get; set; } = null!;
|
||||
|
||||
public int TipologiaSiniestro { get; set; }
|
||||
|
||||
public double? ImporteIndemnizacion { get; set; }
|
||||
|
||||
public double? ImporteReserva { get; set; }
|
||||
|
||||
public int? idLugarSiniestro { get; set; }
|
||||
|
||||
public int idCompania { get; set; }
|
||||
|
||||
public int? SituacionAsegasa { get; set; }
|
||||
|
||||
public DateTime? FechaSituacion { get; set; }
|
||||
|
||||
public int? idUsuarioSituacion { get; set; }
|
||||
|
||||
public DateOnly? FechaEfecto { get; set; }
|
||||
|
||||
public string? Tomador { get; set; }
|
||||
|
||||
public string? Compania { get; set; }
|
||||
|
||||
public string? Direccion { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user