61 lines
1.7 KiB
C#
61 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("Corporativo.CaratulaCreditoCondicionesEspeciales")]
|
|
public partial class CaratulaCreditoCondicionesEspeciales
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int Secuencia { get; set; }
|
|
|
|
[Column(TypeName = "text")]
|
|
public string CondicionEspecial { get; set; }
|
|
|
|
public DateTime? FechaCumplimiento { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string ResponsableCumplimiento { get; set; }
|
|
|
|
public bool? EsPropuesta { 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? IdClasificacion { get; set; }
|
|
|
|
public int? Plazo { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string ResponsableCumplimiento_UserId { get; set; }
|
|
|
|
public virtual ExcepcionesClasificacion ExcepcionesClasificacion { get; set; }
|
|
|
|
public virtual CaratulaCredito CaratulaCredito { get; set; }
|
|
}
|
|
}
|