45 lines
1.3 KiB
C#
45 lines
1.3 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("Corporativo.FacturasContratosOrdenes")]
|
|
public partial class FacturasContratosOrdenes
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdFacturasContratosOrdenes { get; set; }
|
|
|
|
public int? IdSolicitud { get; set; }
|
|
|
|
public int? IdTipoFacilidad { get; set; }
|
|
|
|
public int? Secuencia { 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 DateTime? FechaGestion { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual VerificacionFacturasContratosOrdenes VerificacionFacturasContratosOrdenes { get; set; }
|
|
}
|
|
}
|