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("Desembolso.DesemboloDetalleOrdenCompra")]
|
|
public partial class DesemboloDetalleOrdenCompra
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(250)]
|
|
public string NumeroLicitacion { get; set; }
|
|
|
|
public decimal? Monto { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Plazo { get; set; }
|
|
|
|
public decimal? PorcentajeAdelanto { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string Pagador { get; set; }
|
|
|
|
public DateTime? FechaCreacion { get; set; }
|
|
|
|
public int? IdMoneda { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual DesembolsoDatosGenerales DesembolsoDatosGenerales { get; set; }
|
|
}
|
|
}
|