34 lines
934 B
C#
34 lines
934 B
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.ActividadEconomica")]
|
|
public partial class ActividadEconomica
|
|
{
|
|
[Key]
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public int IdTipoActividad { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Descripcion { get; set; }
|
|
|
|
[StringLength(1)]
|
|
public string CIIUoPIB { 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; }
|
|
}
|
|
}
|