33 lines
916 B
C#
33 lines
916 B
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.ParametroConsultaEpower")]
|
|
public partial class ParametroConsultaEpower
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdParametroConsultaEpower { get; set; }
|
|
|
|
public int? IdConsultaEpower { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string ParamName { get; set; }
|
|
|
|
public int? Orden { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string RefColumn { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string Descripcion { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
public virtual ConsultaEpower ConsultaEpower { get; set; }
|
|
}
|
|
}
|