exibindo faltas na tela_faltas.dart

This commit is contained in:
Reginaldo
2023-12-05 19:52:49 -03:00
parent 8fc77f2adc
commit 3a5b2bdb44
26 changed files with 816 additions and 15 deletions

View File

@@ -0,0 +1,37 @@
class ModeloPresencaAluno{
String DT_DIARIO_CLASSE;
int CD_AULA1;
int CD_AULA2;
int CD_AULA3;
int CD_AULA4;
int CD_AULA5;
int CD_MATRICULA;
bool FL_PRESENTE_AUSENTE1;
bool FL_PRESENTE_AUSENTE2;
bool FL_PRESENTE_AUSENTE3;
bool FL_PRESENTE_AUSENTE4;
bool FL_PRESENTE_AUSENTE5;
String CD_ALUNO;
String NO_ALUNO;
String NR_TURMA;
int CD_DISCIPLINA;
ModeloPresencaAluno({
required this.DT_DIARIO_CLASSE,
required this.CD_MATRICULA,
required this.CD_ALUNO,
required this.NO_ALUNO,
required this.NR_TURMA,
required this.CD_DISCIPLINA,
this.CD_AULA1 = 0,
this.CD_AULA2 = 0,
this.CD_AULA3 = 0,
this.CD_AULA4 = 0,
this.CD_AULA5 = 0,
this.FL_PRESENTE_AUSENTE1 = false,
this.FL_PRESENTE_AUSENTE2 = false,
this.FL_PRESENTE_AUSENTE3 = false,
this.FL_PRESENTE_AUSENTE4 = false,
this.FL_PRESENTE_AUSENTE5 = false,
});
}