46 lines
1.3 KiB
C#
46 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("Catalogos.MatrizSeleccionRelacion")]
|
|
public partial class MatrizSeleccionRelacion
|
|
{
|
|
[Key]
|
|
public int IdMatrizSeleccionRelacion { get; set; }
|
|
|
|
public int? IdCriterioSeleccion { get; set; }
|
|
|
|
public int? IdCriterioSeleccionRelacion { get; set; }
|
|
|
|
public int? IdTipoRelacion { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string ValorCriterioSeleccion { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string ValorCriterioSeleccionRelacion { get; set; }
|
|
|
|
public bool? Deshabilitar { get; set; }
|
|
|
|
public bool? Requerido { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string Operador { get; set; }
|
|
|
|
public double? ValorCriterioSeleccionMultiplicador { get; set; }
|
|
|
|
public double? ValorCriterioSeleccionRelacionMultiplicador { get; set; }
|
|
|
|
public double? ValorFijoEvaluacion { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
public virtual CriterioSeleccion CriterioSeleccion { get; set; }
|
|
|
|
public virtual CriterioSeleccion CriterioSeleccion1 { get; set; }
|
|
}
|
|
}
|