64 lines
1.7 KiB
C#
64 lines
1.7 KiB
C#
namespace ULA.Davivienda.PrendarioModel.Prendario
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Prendario.DatosAprobacion")]
|
|
public partial class DatosAprobacion
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdDatosAprobacion { get; set; }
|
|
|
|
public int? IdSolicitud { get; set; }
|
|
|
|
public string ConclusionJustificacion { get; set; }
|
|
|
|
public int? IdDecision { get; set; }
|
|
|
|
public int? IdMotivo { get; set; }
|
|
|
|
public bool? TieneExcepciones { get; set; }
|
|
|
|
public int? IdExcepcion { get; set; }
|
|
|
|
public int? Excepcion2 { get; set; }
|
|
|
|
public int? IdRecomendacion { get; set; }
|
|
|
|
public decimal? LimiteRecomendado { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioFirma1 { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioFirma2 { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioFirma3 { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioFirma4 { get; set; }
|
|
|
|
public string ConclusionRecomendacion { get; set; }
|
|
|
|
public int? TipoAprobacionCaso { get; set; }
|
|
|
|
public DateTime? FechaDecisionRiesgo { get; set; }
|
|
|
|
public DateTime? FechaDecisionModCaratula { get; set; }
|
|
|
|
public virtual Decision Decision { get; set; }
|
|
|
|
public virtual Excepciones Excepciones { get; set; }
|
|
|
|
public virtual Motivo Motivo { get; set; }
|
|
|
|
public virtual Recomendacion Recomendacion { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|