31 lines
657 B
Dart
31 lines
657 B
Dart
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 = ''
|
|
});
|
|
} |