buscando logs na api e exibindo na nova tela logs

This commit is contained in:
Reginaldo
2023-11-27 17:44:14 -03:00
parent 407fb745ea
commit aeff98cdf9
11 changed files with 416 additions and 6 deletions

View File

@@ -9,6 +9,8 @@ class AlunoModel{
String login;
String URL;
var dados;
String CD_USUARIO;
String USER_USUARIO;
AlunoModel({
required this.nome,
@@ -20,6 +22,8 @@ class AlunoModel{
required this.dados,
required this.cidade,
required this.login,
required this.URL
required this.URL,
required this.CD_USUARIO,
required this.USER_USUARIO,
});
}

19
lib/models/log_model.dart Normal file
View File

@@ -0,0 +1,19 @@
class LogModel{
int NRO_LOG;
String DATA;
String TELA;
String CD_USUARIO;
String NO_USUARIO;
String CIDADE;
String SISTEMA;
LogModel({
required this.NRO_LOG,
required this.DATA,
required this.TELA,
required this.CD_USUARIO,
required this.NO_USUARIO,
required this.CIDADE,
required this.SISTEMA,
});
}