salvas novas chamadas no banco na tela_faltas.dart

This commit is contained in:
Reginaldo
2023-12-07 14:53:09 -03:00
parent 3a5b2bdb44
commit 7fe3a16aef
21 changed files with 456 additions and 144 deletions

View File

@@ -1,5 +1,6 @@
class ModeloPresencaAluno{
String DT_DIARIO_CLASSE;
int CD_SALA;
int CD_AULA1;
int CD_AULA2;
int CD_AULA3;
@@ -15,9 +16,12 @@ class ModeloPresencaAluno{
String NO_ALUNO;
String NR_TURMA;
int CD_DISCIPLINA;
String STATUS;
String STATUS_DADOS;
ModeloPresencaAluno({
required this.DT_DIARIO_CLASSE,
required this.CD_SALA,
required this.CD_MATRICULA,
required this.CD_ALUNO,
required this.NO_ALUNO,
@@ -33,5 +37,7 @@ class ModeloPresencaAluno{
this.FL_PRESENTE_AUSENTE3 = false,
this.FL_PRESENTE_AUSENTE4 = false,
this.FL_PRESENTE_AUSENTE5 = false,
required this.STATUS,
this.STATUS_DADOS = 'NOVO'
});
}