52 lines
1.4 KiB
C#
52 lines
1.4 KiB
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("Catalogos.DocumentosFormalizacion")]
|
|
public partial class DocumentosFormalizacion
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdDocumentoFormalizacion { get; set; }
|
|
|
|
public int? IdTipoDocumento { get; set; }
|
|
|
|
public int? IdTipoCategoria { get; set; }
|
|
|
|
public int? IdTipoFacilidad { get; set; }
|
|
|
|
public bool? ConGarantiaReal { get; set; }
|
|
|
|
public bool? EsLinea { get; set; }
|
|
|
|
public bool? EsEspecifico { get; set; }
|
|
|
|
public int? IdProceso { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioCreador { get; set; }
|
|
|
|
public DateTime? FechaCreacion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioModificado { get; set; }
|
|
|
|
public DateTime? FechaModificacion { get; set; }
|
|
|
|
public int? IdEtapa { get; set; }
|
|
|
|
public virtual Procesos Procesos { get; set; }
|
|
|
|
public virtual TipoCategoria TipoCategoria { get; set; }
|
|
|
|
public virtual TipoDocumento TipoDocumento { get; set; }
|
|
|
|
public virtual TipoFacilidad TipoFacilidad { get; set; }
|
|
}
|
|
}
|