TFS_ANTIGUO/SInCathay/ULA.Cathay.CreditoModel/Credito/Funcionario.cs

53 lines
1.4 KiB
C#

namespace ULA.Cathay.CreditoModel.Credito
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
[Table("Global.Funcionario")]
public partial class Funcionario
{
[Key]
[Column(Order = 0)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdSolicitud { get; set; }
[Key]
[Column(Order = 1)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int Incident { get; set; }
[Key]
[Column(Order = 2)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdProceso { get; set; }
[Key]
[Column(Order = 3)]
[DatabaseGenerated(DatabaseGeneratedOption.None)]
public int IdRolFuncional { get; set; }
[Key]
[Column(Order = 4)]
[StringLength(100)]
public string UserId { get; set; }
[StringLength(500)]
public string FullName { get; set; }
[StringLength(100)]
public string Email { get; set; }
public int? IdEstructuraOrgChart { get; set; }
public virtual EstructuraOrgChart EstructuraOrgChart { get; set; }
public virtual Procesos Procesos { get; set; }
public virtual RolFuncional RolFuncional { get; set; }
public virtual Solicitud Solicitud { get; set; }
}
}