42 lines
1 KiB
C#
42 lines
1 KiB
C#
namespace ULA.Davivienda.PrendarioModel.Prendario
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Catalogos.EPReglas")]
|
|
public partial class EPReglas
|
|
{
|
|
[Key]
|
|
public int re_id { get; set; }
|
|
|
|
public int re_codseccion { get; set; }
|
|
|
|
public int re_regla { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string re_descripcion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string re_codvariable { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string re_operador { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string re_valor_eval { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string re_tipo_valor { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string re_proceso { get; set; }
|
|
|
|
[StringLength(800)]
|
|
public string re_mensaje { get; set; }
|
|
|
|
public bool? re_vigencia { get; set; }
|
|
}
|
|
}
|