이름, 유형, 학번, 점수, 마감기한, 과목, 점수
Main 페이지 접속 시 넘겨받아야 할 정보
과제 과목
과제 제목
마감까지 기한
"meta": {
"createdAt" : "처음 생성된 날짜",
"modifiedAt" : "가장 최근에 수정된 날짜",
}
{
"userId" : "abcd123",
"userName" : "홍길동",
"userNumber" : 2016920001,
"meta": {
"createdAt" : "처음 생성된 날짜",
"modifedAt" : "가장 최근에 수정된 날짜",
}
}
{
"assignmentId" : 1525,
"professorNumber" : "출제자의 userNumber",
"students" : [
2016920001,
2016920002,
2016920003
],
"assignmentName" : "[linear algebra]chapter 1",
"assignmentInfo" : "주의사항",
"publishingTime" : "과제 발행날짜",
"deadline" : "2020-07-23",
"questions" : [
{
"questionId" : 0,
"questionContent" : "1+1 = ?",
"fullScore" : 30,
},
],
"meta": {
"createdAt" : "처음 생성된 날짜",
"modifiedAt" : "가장 최근에 수정된 날짜",
},
}
// 현재 사용되지 않음
{
"userNumber" : "2016920001",
"assignmentId" : 1525,
"questionId" : 15250001,
"answerContent" : "답은 2",
"score" : 24,
"meta": {
"createdAt" : "처음 생성된 날짜",
"modifiedAt" : "가장 최근에 수정된 날짜",
}
}
// 현재 사용되지 않음
{
"userNumber" : "2016920001",
"assignmentId" : 1525,
"answers" : [{
"questionId": 15250001
"answerContent" : "답은 2",
"score" : 24,
}],
"meta": {
"createdAt" : "처음 생성된 날짜",
"modifiedAt" : "가장 최근에 수정된 날짜",
}
}