salvas novas notas no banco na tela_notas.dart e ajustado a tela_faltas.dart

This commit is contained in:
Reginaldo
2023-12-08 20:01:49 -03:00
parent 7fe3a16aef
commit d49081ff8e
21 changed files with 637 additions and 58 deletions

View File

@@ -0,0 +1,31 @@
import 'package:flutter/cupertino.dart';
class ModeloNotaAluno{
int CD_MATRICULA;
int CD_DISCIPLINA;
int CD_SALA;
String PERIODO;
TextEditingController NOTA;
String CD_ALUNO;
int CD_NOTA;
String NR_TURMA;
String NO_ALUNO;
String STATUS;
String STATUS_DADOS;
String AVISO;
ModeloNotaAluno({
required this.CD_MATRICULA,
required this.CD_DISCIPLINA,
required this.CD_SALA,
required this.PERIODO,
required this.NOTA,
required this.CD_ALUNO,
required this.CD_NOTA,
required this.NR_TURMA,
required this.NO_ALUNO,
required this.STATUS,
this.STATUS_DADOS = 'NOVO',
this.AVISO = ''
});
}