56 lines
1.5 KiB
C#
56 lines
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using PropertyChanged;
|
|
|
|
namespace bdAsegasa.db;
|
|
|
|
[AddINotifyPropertyChangedInterface]
|
|
public partial class ficheroscompanias
|
|
{
|
|
public int idFichero { get; set; }
|
|
|
|
public DateTime FechaCreacion { get; set; }
|
|
|
|
public DateTime? FechaProcesado { get; set; }
|
|
|
|
public DateTime? FechaError { get; set; }
|
|
|
|
public string? NombreFichero { get; set; }
|
|
|
|
public int Tipo { get; set; }
|
|
|
|
public int? idUsuario { get; set; }
|
|
|
|
public int idCompania { get; set; }
|
|
|
|
public byte[]? Fichero { get; set; }
|
|
|
|
public string? SHA1 { get; set; }
|
|
|
|
public bool ProcesadoSinRecibosCorrectos { get; set; }
|
|
|
|
public string? Observaciones { get; set; }
|
|
|
|
public string? Version { get; set; }
|
|
|
|
public bool ContieneRecibos { get; set; }
|
|
|
|
public bool ContienePolizas { get; set; }
|
|
|
|
public bool ContieneSiniestros { get; set; }
|
|
|
|
public bool ContieneLiquidaciones { get; set; }
|
|
|
|
public virtual ICollection<actualizacionessiniestros_eiac> actualizacionessiniestros_eiac { get; set; } = new List<actualizacionessiniestros_eiac>();
|
|
|
|
public virtual companias idCompaniaNavigation { get; set; } = null!;
|
|
|
|
public virtual usuarios? idUsuarioNavigation { get; set; }
|
|
|
|
public virtual ICollection<recibos> recibos { get; set; } = new List<recibos>();
|
|
|
|
public virtual ICollection<registrosactualizados> registrosactualizados { get; set; } = new List<registrosactualizados>();
|
|
|
|
public virtual ICollection<siniestros_eiac> siniestros_eiac { get; set; } = new List<siniestros_eiac>();
|
|
}
|