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

65 lines
1.8 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.OfertaFacilidadesGarantias")]
public partial class OfertaFacilidadesGarantias
{
[Key]
[Column(Order = 0)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdSolicitud { get; set; }
[Key]
[Column(Order = 1)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdTipoFacilidad { get; set; }
[Key]
[Column(Order = 2)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int Secuencia { get; set; }
[Key]
[Column(Order = 3)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdGarantia { get; set; }
public bool? EsPropuesta { get; set; }
public int? TipoGarantia { get; set; }
[StringLength(150)]
public string DescTipoGarantia { get; set; }
[Column(TypeName = "text")]
public string DetalleGarantia { get; set; }
[StringLength(50)]
public string NumeroGarantiaSAP { get; set; }
[StringLength(100)]
public string UsuarioCreador { get; set; }
public DateTime? FechaCreacion { get; set; }
[StringLength(100)]
public string UsuarioModificado { get; set; }
public DateTime? FechaModificacion { get; set; }
[StringLength(150)]
public string Process { get; set; }
[StringLength(150)]
public string Step { get; set; }
public int? Incident { get; set; }
public virtual OfertaFacilidades OfertaFacilidades { get; set; }
}
}