34 lines
897 B
C#
34 lines
897 B
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.IncrementoTasa")]
|
|
public partial class IncrementoTasa
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int it_codigo { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string it_co_tasa { get; set; }
|
|
|
|
public decimal it_minimo { get; set; }
|
|
|
|
public decimal it_promedio { get; set; }
|
|
|
|
public decimal it_maximo { get; set; }
|
|
|
|
public bool it_vigencia { get; set; }
|
|
|
|
public decimal it_normal { get; set; }
|
|
|
|
public int? co_moneda { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string de_proceso { get; set; }
|
|
}
|
|
}
|