69 lines
2.3 KiB
C#
69 lines
2.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("Aprobacion.ComiteCredito")]
|
|
public partial class ComiteCredito
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public ComiteCredito()
|
|
{
|
|
CaratulaCredito = new HashSet<CaratulaCredito>();
|
|
MiembrosComiteCredito = new HashSet<MiembrosComiteCredito>();
|
|
SecuenciaCaratulaCredito = new HashSet<SecuenciaCaratulaCredito>();
|
|
}
|
|
|
|
[Key]
|
|
[StringLength(5)]
|
|
public string CodigoComite { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string NombreComite { get; set; }
|
|
|
|
[Column(TypeName = "money")]
|
|
public decimal? ExposicionTotalTope { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioCreador { get; set; }
|
|
|
|
public DateTime? FechaCreacion { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string UsuarioModificado { get; set; }
|
|
|
|
public DateTime? FechaModificacion { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string Process { get; set; }
|
|
|
|
[StringLength(150)]
|
|
public string Step { get; set; }
|
|
|
|
public int? Incident { get; set; }
|
|
|
|
public bool? Estado { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string IdUsuario { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string IdRango { get; set; }
|
|
|
|
[StringLength(5)]
|
|
public string CodGerarquia { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<CaratulaCredito> CaratulaCredito { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<MiembrosComiteCredito> MiembrosComiteCredito { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<SecuenciaCaratulaCredito> SecuenciaCaratulaCredito { get; set; }
|
|
}
|
|
}
|