33 lines
903 B
C#
33 lines
903 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.DevaluacionEsperada")]
|
|
public partial class DevaluacionEsperada
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int de_codigo { get; set; }
|
|
|
|
public decimal de_devaluacion { get; set; }
|
|
|
|
public decimal de_inc_devesp1 { get; set; }
|
|
|
|
public decimal de_inc_devesp2 { get; set; }
|
|
|
|
public decimal de_inc_devesp3 { get; set; }
|
|
|
|
public bool de_vigencia { get; set; }
|
|
|
|
public decimal de_inc_devesp0 { get; set; }
|
|
|
|
public int? co_moneda { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string de_proceso { get; set; }
|
|
}
|
|
}
|