64 lines
1.8 KiB
C#
64 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("FRCondiciones.ReglasCondiciones")]
|
|
public partial class ReglasCondiciones
|
|
{
|
|
[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 CodCondicion { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodRegla { get; set; }
|
|
|
|
public int CodParametro { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(2)]
|
|
public string OperadorAritmetico { get; set; }
|
|
|
|
[Required]
|
|
public string ValorDefecto { get; set; }
|
|
|
|
[StringLength(3)]
|
|
public string OperadorLogicaParametro { get; set; }
|
|
|
|
[StringLength(3)]
|
|
public string OperadorLogicoSubConjunto { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string NombreSubConjunto { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string UsuarioCreador { get; set; }
|
|
|
|
public DateTime? FechaCreacion { get; set; }
|
|
|
|
[StringLength(300)]
|
|
public string UsuarioModificador { get; set; }
|
|
|
|
public DateTime? FechaModificacion { get; set; }
|
|
|
|
public virtual FiltroCondicionesMaestro FiltroCondicionesMaestro { get; set; }
|
|
|
|
public virtual TipoParametrosCondiciones TipoParametrosCondiciones { get; set; }
|
|
}
|
|
}
|