44 lines
1.2 KiB
C#
44 lines
1.2 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("Global.GestionRenovacionLineas")]
|
|
public partial class GestionRenovacionLineas
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(10)]
|
|
public string IdLinea { get; set; }
|
|
|
|
public decimal MontoLinea { get; set; }
|
|
|
|
public int IdMoneda { get; set; }
|
|
|
|
public DateTime FechaVencimiento { get; set; }
|
|
|
|
public bool? RenovarCliente { get; set; }
|
|
|
|
public DateTime? FechaDecisionGestion { get; set; }
|
|
|
|
[Column(TypeName = "ntext")]
|
|
public string Justificacion { get; set; }
|
|
|
|
public bool? GerenciaApruebaRenovacion { get; set; }
|
|
|
|
public DateTime? FechaDecisionGerencia { get; set; }
|
|
|
|
[Column(TypeName = "ntext")]
|
|
public string ComentariosGerencia { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|