|
|
@@ -19,7 +19,7 @@ export interface StudentStat {
|
|
|
/**
|
|
|
* 班级知识点记录
|
|
|
*/
|
|
|
- export interface ClassKnowledgeRecord {
|
|
|
+export interface ClassKnowledgeRecord {
|
|
|
rate: number;
|
|
|
list: StudentPlanStudyRecord[];
|
|
|
}
|
|
|
@@ -185,6 +185,8 @@ export interface ExamineeQuestion {
|
|
|
subQuestions: ExamineeQuestion[];
|
|
|
parse?: string;
|
|
|
totalScore: number;
|
|
|
+ // 原始题型名称
|
|
|
+ typeTitle?: string;
|
|
|
}
|
|
|
export interface Examinee {
|
|
|
examineeId: number;
|
|
|
@@ -296,6 +298,8 @@ export interface Question extends QuestionState {
|
|
|
duration: number;
|
|
|
// 是否有子题
|
|
|
hasSubQuestions: boolean;
|
|
|
+ // 原始题型名称
|
|
|
+ typeTitle?: string;
|
|
|
}
|
|
|
|
|
|
export interface SubjectListRequestDTO {
|