salvas novas notas no banco na tela_notas.dart e ajustado a tela_faltas.dart
This commit is contained in:
31
lib/modelos/modelo_nota_aluno.dart
Normal file
31
lib/modelos/modelo_nota_aluno.dart
Normal 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 = ''
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user