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("Catalogos.MatrizOferta")]
|
|
public partial class MatrizOferta
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdTipoFacilidad { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdTipoSeleccion { get; set; }
|
|
|
|
public int IdCriterioSeleccion { get; set; }
|
|
|
|
[Column(TypeName = "numeric")]
|
|
public decimal? Porcentaje { 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; }
|
|
|
|
public virtual TipoFacilidad TipoFacilidad { get; set; }
|
|
|
|
public virtual TipoSeleccion TipoSeleccion { get; set; }
|
|
}
|
|
}
|