salvando o cpf do funcionario no mariaDB

This commit is contained in:
Reginaldo
2023-11-13 11:12:35 -03:00
parent 4f5c40e8af
commit 407fb745ea
3 changed files with 17 additions and 2 deletions

View File

@@ -6,6 +6,7 @@ class LoginModel{
String CADASTRADO_POR;
String CIDADE;
String STATUS;
String CPF;
LoginModel({
required this.CHECK,
@@ -14,6 +15,7 @@ class LoginModel{
required this.DATA,
required this.CADASTRADO_POR,
required this.CIDADE,
required this.STATUS
required this.STATUS,
required this.CPF
});
}