51 lines
1.6 KiB
C#
51 lines
1.6 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.ClasificacionDocumentosAdjuntos")]
|
|
public partial class ClasificacionDocumentosAdjuntos
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public ClasificacionDocumentosAdjuntos()
|
|
{
|
|
FormalizacionDocumentosLegales = new HashSet<FormalizacionDocumentosLegales>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public long CodDocumento { get; set; }
|
|
|
|
public int IdCliente { get; set; }
|
|
|
|
public int IdEtapa { get; set; }
|
|
|
|
public int IdCategoria { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(500)]
|
|
public string NombreDocumento { get; set; }
|
|
|
|
public DateTime Fecha { get; set; }
|
|
|
|
[Required]
|
|
public string RutaDescarga { get; set; }
|
|
|
|
[Required]
|
|
public string RutaFisica { get; set; }
|
|
|
|
public string Comentarios { get; set; }
|
|
|
|
public virtual CategoriaTipoDocumento CategoriaTipoDocumento { get; set; }
|
|
|
|
public virtual Etapas Etapas { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<FormalizacionDocumentosLegales> FormalizacionDocumentosLegales { get; set; }
|
|
|
|
public virtual Cliente Cliente { get; set; }
|
|
}
|
|
}
|