37 lines
995 B
C#
37 lines
995 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("Global.HistorialDecision")]
|
|
public partial class HistorialDecision
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdHistorialDecision { get; set; }
|
|
|
|
public int? IdSolicitud { get; set; }
|
|
|
|
public int? Iteracion { get; set; }
|
|
|
|
public int? IdEtapa { get; set; }
|
|
|
|
public int? IdDecision { get; set; }
|
|
|
|
public int? IdMotivo { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioFirma { get; set; }
|
|
|
|
public virtual Decision Decision { get; set; }
|
|
|
|
public virtual Etapas Etapas { get; set; }
|
|
|
|
public virtual Motivo Motivo { get; set; }
|
|
|
|
public virtual Solicitud Solicitud { get; set; }
|
|
}
|
|
}
|