Apigateway/Microservicios/MsUsuarios/Context/USUARIO.cs
Cristian Guerrero 7f3e100ca0 campos andrey
2024-10-03 12:49:15 -05:00

47 lines
2.0 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace MSAdminUsuarios.Context
{
public partial class USUARIO
{
public string? TX_PKDOC_USUMS { get; set; }
public string? TX_LOGINNAME_USUMS { get; set; }
public string? TX_PRIMERNOM_USUMS { get; set; }
public string? TX_SEGUNDONOM_USUMS { get; set; }
public string? TX_PRIMERAPELL_USUMS { get; set; }
public string? TX_SEGUNDOAPELL_USUMS { get; set; }
public string? TX_DIRECCION_USUMS { get; set; }
public string? TX_TELEFONO_USUMS { get; set; }
public string? TX_CELULAR_USUMS { get; set; }
public string? TX_CORREO_USUMS { get; set; }
public int? NU_ESTADO_USUMS { get; set; }
public string? TX_PASSWORD_USUMS { get; set; }
public int? NU_TIPODOC_USUMS { get; set; }
public int NU_PK_USUMS { get; set; }
public string? CL_FIRMA_USUMS { get; set; }
public int? BL_PERTENCEIPS_USUMS { get; set; }
public string? TX_NOMBRE_PVD { get; set; }
public int? BL_VIENELDAP_USUMS { get; set; }
public int? NU_GRUPO_USUMS { get; set; }
public int? NU_CARGO_USUMS { get; set; }
public int? NU_MODALIDADCTT_USUMS { get; set; }
public string? TX_SEDES_USUMS { get; set; }
public int? NU_BLOQUEO_USUMS { get; set; }
public string? TX_UUID_USUMS { get; set; }
public int? NU_TIPOUSUARIO_USUMS { get; set; }
public string? TX_REGPROF_MDC { get; set; }
public string? TX_MSORIGEN_USUMS { get; set; }
public int? NU_INICIO_PRIMERAVEZ_USUMS { get; set; }
public DateTime? FE_INICIOACTIVACION_USUTMP { get; set; }
public DateTime? FE_FINACTIVACION_USUTMP { get; set; }
public DateTime? FE_RECUPERACLAVE { get; set; }
public int? NU_POSFECHAR_USUMS { get; set; }
public int? NU_TIEMPOFORMULA_USUMS { get; set; }
public int? NU_CANTIDADENTREGAS_USUMS { get; set; }
}
}