40 lines
1.1 KiB
C#
40 lines
1.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("Global.SolicitarRequisitosBasicosCliente")]
|
|
public partial class SolicitarRequisitosBasicosCliente
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdTipoDocumento { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdCliente { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
public bool InformacionRecibidaDocumento { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string SolicitudPara { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string SolicitudDe { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string SolicitudAsunto { get; set; }
|
|
|
|
public string SolicitudDetalle { get; set; }
|
|
}
|
|
}
|