34 lines
923 B
C#
34 lines
923 B
C#
namespace ULA.Cathay.CreditoModel.Credito
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Global.DocumentosEtapa")]
|
|
public partial class DocumentosEtapa
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdDocumentosEtapa { get; set; }
|
|
|
|
public int IdTipoDocumento { get; set; }
|
|
|
|
public int IdEtapa { get; set; }
|
|
|
|
public int? IdTipoFacilidad { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
public bool? esLinea { get; set; }
|
|
|
|
public bool? esEspecifico { get; set; }
|
|
|
|
public virtual Etapas Etapas { get; set; }
|
|
|
|
public virtual TipoDocumento TipoDocumento { get; set; }
|
|
|
|
public virtual TipoFacilidad TipoFacilidad { get; set; }
|
|
}
|
|
}
|