60 lines
1.8 KiB
C#
60 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("Catalogos.MatrizSeleccion")]
|
|
public partial class MatrizSeleccion
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public MatrizSeleccion()
|
|
{
|
|
HojaSeleccion = new HashSet<HojaSeleccion>();
|
|
}
|
|
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdCriterioSeleccion { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdTipoSeleccion { get; set; }
|
|
|
|
public int? IdTipoValor { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string Valor { get; set; }
|
|
|
|
public decimal? ValorInferior { get; set; }
|
|
|
|
public decimal? ValorSuperior { get; set; }
|
|
|
|
public int? Peso { get; set; }
|
|
|
|
public bool? Estado { 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; }
|
|
|
|
public virtual CriterioSeleccion CriterioSeleccion { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<HojaSeleccion> HojaSeleccion { get; set; }
|
|
|
|
public virtual TipoValor TipoValor { get; set; }
|
|
|
|
public virtual TipoSeleccion TipoSeleccion { get; set; }
|
|
}
|
|
}
|