1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.dollearn.student.network.entity
|
| data class Paper(
| val completionNum: Int = 0,
| val completionTime: String?,
| val examinationId: Int = 0,
| val examinationStudentId: Int = 0,
| val gradeName: String = "",
| val endTime: String = "",
| val insertTime: String = "",
| val paperId: Int = 0,
| val paperType: Int = 0,
| val courseType: Int?,
| val scheduleId: Int = 0,
| val courseId: Int = 0,
| val paperName: String = "",
| val points: Int?,
| val questionsNum: Int = 0,
| val type: Int = 0, //1=线上考试,2=线下考试
| val scoreNum: Int = 0,
| val state: Int = 0, //状态 1=阅卷中 2=已阅卷 3=答题中 4=未答题
| val subjectName: String = "",
| val time: Int?
| )
|
|