58 lines
1.9 KiB
C#
58 lines
1.9 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("Catalogos.Sector")]
|
|
public partial class Sector
|
|
{
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
|
|
public Sector()
|
|
{
|
|
GrupoCIIU = new HashSet<GrupoCIIU>();
|
|
MatrizBeneficiarioSBD = new HashSet<MatrizBeneficiarioSBD>();
|
|
}
|
|
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdSector { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Descripcion { get; set; }
|
|
|
|
public decimal? PersonalPromedio { get; set; }
|
|
|
|
public decimal? VentasAnualesNetas { get; set; }
|
|
|
|
public decimal? ValorActivosTotales { get; set; }
|
|
|
|
public decimal? PorcentajePersonalPromedio { get; set; }
|
|
|
|
public decimal? PorcentajeVentasAnualesNetas { get; set; }
|
|
|
|
public decimal? PorcentajeValorActivosTotales { get; set; }
|
|
|
|
public int? Porcentaje { get; set; }
|
|
|
|
public bool? Estado { 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; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<GrupoCIIU> GrupoCIIU { get; set; }
|
|
|
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
|
|
public virtual ICollection<MatrizBeneficiarioSBD> MatrizBeneficiarioSBD { get; set; }
|
|
}
|
|
}
|