61 lines
1.6 KiB
C#
61 lines
1.6 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("Global.HojaSeleccion")]
|
|
public partial class HojaSeleccion
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSolicitud { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdCriterioSeleccion { get; set; }
|
|
|
|
public int? IdTipoSeleccion { get; set; }
|
|
|
|
public int? Peso { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string ValorCriterio { get; set; }
|
|
|
|
public decimal? Monto { get; set; }
|
|
|
|
public int? IdMoneda { get; set; }
|
|
|
|
public decimal? MontoEquivalente { 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 CriterioSeleccion CriterioSeleccion { get; set; }
|
|
|
|
public virtual MatrizSeleccion MatrizSeleccion { get; set; }
|
|
|
|
public virtual Moneda Moneda { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|