39 lines
1.2 KiB
C#
39 lines
1.2 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("FRCondiciones.FiltroParametrosGlobalesMaestro")]
|
|
public partial class FiltroParametrosGlobalesMaestro
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodProceso { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodMaestro { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodEvaluacion { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodParametro { get; set; }
|
|
|
|
[Required]
|
|
public string Valor { get; set; }
|
|
|
|
public virtual MaestroCondicionesProceso MaestroCondicionesProceso { get; set; }
|
|
|
|
public virtual ParametrosGlobalesProceso ParametrosGlobalesProceso { get; set; }
|
|
}
|
|
}
|