Files
rkm_educa_prof_app/lib/modelos/modelo_presenca_aluno.dart
2023-12-07 14:53:09 -03:00

43 lines
1.0 KiB
Dart

class ModeloPresencaAluno{
String DT_DIARIO_CLASSE;
int CD_SALA;
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;
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,
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,
required this.STATUS,
this.STATUS_DADOS = 'NOVO'
});
}