31 lines
861 B
C#
31 lines
861 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.ParamMaximoEndeudamientoNCP")]
|
|
public partial class ParamMaximoEndeudamientoNCP
|
|
{
|
|
[Key]
|
|
public int IdParamMaximoEndeudamientoNCP { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string Proceso { get; set; }
|
|
|
|
public int IdMoneda { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal MinIngresoNeto { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal MaxIngresoNeto { get; set; }
|
|
|
|
public decimal PorcEndeudamiento { get; set; }
|
|
|
|
public bool Estado { get; set; }
|
|
}
|
|
}
|