65 lines
2 KiB
C#
65 lines
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("Aprobacion.MiembrosComiteCredito")]
|
|
public partial class MiembrosComiteCredito
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public MiembrosComiteCredito()
|
|
{
|
|
AprobacionesComite = new HashSet<AprobacionesComite>();
|
|
}
|
|
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(5)]
|
|
public string CodigoComite { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdEstructuraOrgChart { get; set; }
|
|
|
|
public int Orden { get; set; }
|
|
|
|
public bool? EsVoto { 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; }
|
|
|
|
public bool? VotoPositivoActivaRegClienteSAP { get; set; }
|
|
|
|
public bool? VotoPositivoActivaValidarCondicionesCliente { get; set; }
|
|
|
|
public bool? VotoPositivoActivaExcepciones { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<AprobacionesComite> AprobacionesComite { get; set; }
|
|
|
|
public virtual ComiteCredito ComiteCredito { get; set; }
|
|
|
|
public virtual EstructuraOrgChart EstructuraOrgChart { get; set; }
|
|
}
|
|
}
|