48 lines
1.3 KiB
C#
48 lines
1.3 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.ObservacionFormalizacion")]
|
|
public partial class ObservacionFormalizacion
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdObservacion { get; set; }
|
|
|
|
public int? IdCliente { get; set; }
|
|
|
|
public int? IdSolicitud { get; set; }
|
|
|
|
public int? Incidente { get; set; }
|
|
|
|
public int? IdProceso { get; set; }
|
|
|
|
public int? IdTipoDocumento { get; set; }
|
|
|
|
public int? IdTipoObservacion { get; set; }
|
|
|
|
public int? ConsecutivoPeriodo { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Usuario { get; set; }
|
|
|
|
public string DescripcionObservacion { get; set; }
|
|
|
|
public DateTime? FechaObservacion { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Etapa { get; set; }
|
|
|
|
public virtual Procesos Procesos { get; set; }
|
|
|
|
public virtual TipoDocumento TipoDocumento { get; set; }
|
|
|
|
public virtual TipoObservacion TipoObservacion { get; set; }
|
|
|
|
public virtual BitacoraDocumentosFormalizacion BitacoraDocumentosFormalizacion { get; set; }
|
|
}
|
|
}
|