2023-02-02 10:50:02 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
|
|
namespace MSAdminUsuarios.Context
|
|
|
|
|
{
|
|
|
|
|
public partial class USUARIO
|
|
|
|
|
{
|
2024-04-05 10:49:24 -05:00
|
|
|
|
public string? TX_PKDOC_USUMS { get; set; }
|
2023-02-02 10:50:02 -05:00
|
|
|
|
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; }
|
2024-04-05 10:49:24 -05:00
|
|
|
|
public int? NU_ESTADO_USUMS { get; set; }
|
2023-02-02 10:50:02 -05:00
|
|
|
|
public string? TX_PASSWORD_USUMS { get; set; }
|
|
|
|
|
public int? NU_TIPODOC_USUMS { get; set; }
|
2024-04-05 10:49:24 -05:00
|
|
|
|
public int NU_PK_USUMS { get; set; }
|
2023-02-14 18:01:33 -05:00
|
|
|
|
public string? CL_FIRMA_USUMS { get; set; }
|
2023-03-09 12:14:29 -05:00
|
|
|
|
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; }
|
2023-06-29 09:33:06 -05:00
|
|
|
|
public string? TX_SEDES_USUMS { get; set; }
|
2024-04-05 10:49:24 -05:00
|
|
|
|
public int? NU_BLOQUEO_USUMS { get; set; }
|
2023-09-21 15:09:24 -05:00
|
|
|
|
public string? TX_UUID_USUMS { get; set; }
|
2023-10-04 15:16:48 -05:00
|
|
|
|
public int? NU_TIPOUSUARIO_USUMS { get; set; }
|
2023-12-29 14:40:42 -05:00
|
|
|
|
public string? TX_REGPROF_MDC { get; set; }
|
2024-04-05 10:49:24 -05:00
|
|
|
|
public string? TX_MSORIGEN_USUMS { get; set; }
|
2023-02-02 10:50:02 -05:00
|
|
|
|
}
|
|
|
|
|
}
|