49 lines
1.4 KiB
C#
49 lines
1.4 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("Formalizacion.FomalizacionInfoAdicional_CuentasCartaMisiva")]
|
|
public partial class FomalizacionInfoAdicional_CuentasCartaMisiva
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int Incident { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdProceso { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdCuenta { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string DescripcionTipoCuenta { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string NumeroCuenta { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string TitularCuenta_Identificacion { get; set; }
|
|
|
|
public string TitularCuenta_Nombre { get; set; }
|
|
|
|
public DateTime Fecha { get; set; }
|
|
|
|
public virtual FormaliacionInformacionAdicional FormaliacionInformacionAdicional { get; set; }
|
|
}
|
|
}
|