37 lines
945 B
C#
37 lines
945 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("Aprobacion.DecisionPorEtapa")]
|
|
public partial class DecisionPorEtapa
|
|
{
|
|
[Key]
|
|
public int IdDecisionPorEtapa { get; set; }
|
|
|
|
public int IdDecision { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string Proceso { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string Etapa { get; set; }
|
|
|
|
public decimal? MontoMin { get; set; }
|
|
|
|
public decimal? MontoMax { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string GrupoIn { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string GrupoNotIn { get; set; }
|
|
|
|
public virtual Decision Decision { get; set; }
|
|
}
|
|
}
|