75 lines
2 KiB
C#
75 lines
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.ControlCartera")]
|
|
public partial class ControlCartera
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public long IdCartera { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(12)]
|
|
public string IdLinea { get; set; }
|
|
|
|
[Column(TypeName = "ntext")]
|
|
[Required]
|
|
public string NombreCliente { get; set; }
|
|
|
|
public decimal MontoLinea { get; set; }
|
|
|
|
public int IdMoneda { get; set; }
|
|
|
|
public DateTime FechaVencimiento { get; set; }
|
|
|
|
[Column(TypeName = "ntext")]
|
|
public string Comentarios { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string UsuarioCreador { get; set; }
|
|
|
|
public DateTime? FechaCreacion { get; set; }
|
|
|
|
public bool? SolicitudGenerada { get; set; }
|
|
|
|
public int? IdSolicitud { get; set; }
|
|
|
|
public int? Incidente { get; set; }
|
|
|
|
public DateTime? FechaIncidente { get; set; }
|
|
|
|
public bool? ForzarRenovacion { get; set; }
|
|
|
|
public int? IdTipoCategoria { get; set; }
|
|
|
|
public int? IdTipoCliente { get; set; }
|
|
|
|
public int? IdClasificacionCliente { get; set; }
|
|
|
|
public int? IdTipoIngreso { get; set; }
|
|
|
|
public int? IdTipoSolicitante { get; set; }
|
|
|
|
public int? IdTipoIdentificacion { get; set; }
|
|
|
|
[StringLength(60)]
|
|
public string NumeroIdentificacion { get; set; }
|
|
|
|
public virtual ClasificacionCliente ClasificacionCliente { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual TipoCategoria TipoCategoria { get; set; }
|
|
|
|
public virtual TipoCliente TipoCliente { get; set; }
|
|
|
|
public virtual TipoFuenteIngreso TipoFuenteIngreso { get; set; }
|
|
|
|
public virtual TipoSolicitante TipoSolicitante { get; set; }
|
|
}
|
|
}
|