73 lines
2.1 KiB
C#
73 lines
2.1 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("Corporativo.CaratulaCreditoExcepcionesPolitica")]
|
|
public partial class CaratulaCreditoExcepcionesPolitica
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int Secuencia { get; set; }
|
|
|
|
public int? IdInciso { get; set; }
|
|
|
|
public int? IdExcepcion { get; set; }
|
|
|
|
public int? IdClasificacion { get; set; }
|
|
|
|
public int? IdClasificacionSubsistencia { get; set; }
|
|
|
|
public DateTime? FechaNormalizacion { get; set; }
|
|
|
|
[Column(TypeName = "text")]
|
|
public string Justificacion { 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; }
|
|
|
|
[StringLength(150)]
|
|
public string Process { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string Step { get; set; }
|
|
|
|
public int? Incident { get; set; }
|
|
|
|
public int? Plazo { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string ResponsableCumplimiento { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string ResponsableCumplimiento_UserId { get; set; }
|
|
|
|
public bool? EsPropuesta { get; set; }
|
|
|
|
public virtual Excepciones Excepciones { get; set; }
|
|
|
|
public virtual ExcepcionesClasificacion ExcepcionesClasificacion { get; set; }
|
|
|
|
public virtual ExcepcionesClasificacionSubsistencia ExcepcionesClasificacionSubsistencia { get; set; }
|
|
|
|
public virtual Inciso Inciso { get; set; }
|
|
|
|
public virtual CaratulaCredito CaratulaCredito { get; set; }
|
|
}
|
|
}
|