47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
namespace CapacitacionAtesa.Model.Capacitacion
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("Solicitud.SolicitudDecision")]
|
|
public partial class SolicitudDecision
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int CodigoSolicitudDecision { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public long CodigoSolicitud { get; set; }
|
|
|
|
public int CodigoTipoDecision { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(250)]
|
|
public string NombreTipoDecision { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(250)]
|
|
public string Etapa { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(250)]
|
|
public string Usuario { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(250)]
|
|
public string NombreCompletoUsuario { get; set; }
|
|
|
|
[StringLength(250)]
|
|
public string Comentarios { get; set; }
|
|
|
|
public DateTime FechaInicio { get; set; }
|
|
|
|
public DateTime FechaFin { get; set; }
|
|
}
|
|
}
|