53 lines
1.4 KiB
C#
53 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.CertificadosMandato")]
|
|
public partial class CertificadosMandato
|
|
{
|
|
[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)]
|
|
[StringLength(20)]
|
|
public string NroCertificado { get; set; }
|
|
|
|
public decimal? monto { get; set; }
|
|
|
|
public int? IdTipoMoneda { get; set; }
|
|
|
|
public DateTime? FechaEmision { get; set; }
|
|
|
|
public DateTime? FechaVencimiento { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string Emisor { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string Process { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string Step { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual FormaliacionInformacionAdicional FormaliacionInformacionAdicional { get; set; }
|
|
}
|
|
}
|