60 lines
1.7 KiB
C#
60 lines
1.7 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("Formalizacion.CondicionesVerificacionFormalizacion")]
|
|
public partial class CondicionesVerificacionFormalizacion
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int Incident { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdProceso { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdCondicion { 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 bool? Cumplida { get; set; }
|
|
|
|
public DateTime? Fecha { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(300)]
|
|
public string UserID { get; set; }
|
|
|
|
public virtual CondicionesGeneralesCredito CondicionesGeneralesCredito { get; set; }
|
|
|
|
public virtual Procesos Procesos { get; set; }
|
|
|
|
public virtual TipoCategoria TipoCategoria { get; set; }
|
|
|
|
public virtual TipoFacilidad TipoFacilidad { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|