49 lines
1.2 KiB
C#
49 lines
1.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("Catalogos.ClaseCIIU")]
|
|
public partial class ClaseCIIU
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(10)]
|
|
public string IdClaseCIIU { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
[StringLength(10)]
|
|
public string IdSeccionCIIU { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
[StringLength(10)]
|
|
public string IdDivisionCIIU { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 3)]
|
|
[StringLength(10)]
|
|
public string IdGrupoCIIU { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string Descripcion { 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; }
|
|
|
|
public virtual SeccionCIIU SeccionCIIU { get; set; }
|
|
}
|
|
}
|