TFS_ANTIGUO/SInCathay/ULA.Cathay.CreditoModel/Credito/GrupoInteresEconomico.cs

121 lines
3.6 KiB
C#
Raw Normal View History

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.GrupoInteresEconomico")]
public partial class GrupoInteresEconomico
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public GrupoInteresEconomico()
{
GrupoInteresEconomicoDetalle = new HashSet<GrupoInteresEconomicoDetalle>();
GrupoInteresEconomicoMiembros = new HashSet<GrupoInteresEconomicoMiembros>();
}
[Key]
[StringLength(60)]
public string Identificacion { get; set; }
[StringLength(20)]
public string CodigoBPSap { get; set; }
public int? IdTipoIdentificacion { get; set; }
[StringLength(150)]
public string Nombre { get; set; }
[StringLength(50)]
public string PrimerApellido { get; set; }
[StringLength(50)]
public string SegundoApellido { get; set; }
[StringLength(5)]
public string CodSectorEconomico { get; set; }
[StringLength(150)]
public string SectorEconomico { get; set; }
[StringLength(40)]
public string CodigoCiiu { get; set; }
[StringLength(5)]
public string CodTipoGie { get; set; }
[StringLength(150)]
public string DescTipoGie { get; set; }
public int? CodRiesgoCambiario { get; set; }
[StringLength(150)]
public string DescRiesgoCambiario { get; set; }
[StringLength(5)]
public string CodProfesion { get; set; }
[StringLength(150)]
public string DescProfesion { get; set; }
[StringLength(5)]
public string CodNivelCapacidadPago { get; set; }
[StringLength(150)]
public string DescNivelCapacidadPago { get; set; }
[StringLength(15)]
public string CodEjecutivoActivo { get; set; }
[StringLength(150)]
public string DescEjecutivoActivo { get; set; }
[StringLength(5)]
public string CodGeneraMonedaExtrangera { get; set; }
[StringLength(150)]
public string DescGeneraMonedaExtrangera { get; set; }
[StringLength(5)]
public string CategoriaRiesgo { get; set; }
[StringLength(200)]
public string Direccion { get; set; }
public int? Estado { get; set; }
[StringLength(50)]
public string EstadoCivil { get; set; }
public bool? CumpleAcuerdoSUGEF4_04_o_5_04 { get; set; }
public int? CodigoPermisoSBNBCCR { get; set; }
[StringLength(150)]
public string UsuarioCreador { get; set; }
public DateTime? FechaCreacion { get; set; }
[StringLength(150)]
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; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<GrupoInteresEconomicoDetalle> GrupoInteresEconomicoDetalle { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<GrupoInteresEconomicoMiembros> GrupoInteresEconomicoMiembros { get; set; }
}
}