TFS_ANTIGUO/SInCathay/ULA.Cathay.CreditoModel/Credito/FacturasContratosOrdenesDE.cs

41 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.FacturasContratosOrdenesDE")]
public partial class FacturasContratosOrdenesDE
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdFacturasContratosOrdenes { get; set; }
public int? IdSolicitud { get; set; }
public int? IdTipoFacilidad { get; set; }
[StringLength(20)]
public string Contrato { get; set; }
[StringLength(20)]
public string NoFactura { get; set; }
public int? IdMoneda { get; set; }
public DateTime? FechaFacturacion { get; set; }
public DateTime? FechaPagoFactura { get; set; }
public decimal? Monto { get; set; }
[StringLength(300)]
public string Observaciones { get; set; }
public virtual Moneda Moneda { get; set; }
public virtual VerificacionCondiciones VerificacionCondiciones { get; set; }
}
}