42 lines
1.2 KiB
C#
42 lines
1.2 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.Observacion")]
|
|
public partial class Observacion
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdObservacion { get; set; }
|
|
|
|
public int? IdTipoObservacion { get; set; }
|
|
|
|
public int? IdCliente { get; set; }
|
|
|
|
public int? IdTipoDocumento { 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 TipoDocumento TipoDocumento { get; set; }
|
|
|
|
public virtual TipoObservacion TipoObservacion { get; set; }
|
|
|
|
public virtual BitacoraDocumentosCliente BitacoraDocumentosCliente { get; set; }
|
|
|
|
public virtual Cliente Cliente { get; set; }
|
|
}
|
|
}
|