54 lines
1.4 KiB
C#
54 lines
1.4 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.IndicesEpower")]
|
|
public partial class IndicesEpower
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdUbicacionEp { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdIndice { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(120)]
|
|
public string Campo { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(175)]
|
|
public string Descripcion { get; set; }
|
|
|
|
[StringLength(25)]
|
|
public string Tipo { get; set; }
|
|
|
|
[StringLength(15)]
|
|
public string Largo { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string Requerido { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string Detalle { 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; }
|
|
}
|
|
}
|