题目测试

This commit is contained in:
cc 2025-04-02 22:14:00 +08:00
parent 7faa9f1b35
commit a2b8695327
7 changed files with 32497 additions and 26934 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -3,13 +3,11 @@
"MODULES": [ "MODULES": [
{ {
"MODULE_NAME": "1043bfc77febe75fafec0c4309faccf1", "MODULE_NAME": "1043bfc77febe75fafec0c4309faccf1",
"API_TYPE": "stageMode", "API_TYPE": "stageMode"
"INCREMENTAL_TASKS": {
"COMPILE_ARKTS": true
}
} }
], ],
"BUILD_MODE": "debug" "BUILD_MODE": "debug",
"USE_NORMALIZED_OHMURL": true
}, },
"HVIGOR": { "HVIGOR": {
"IS_INCREMENTAL": true, "IS_INCREMENTAL": true,
@ -18,21 +16,19 @@
"IS_HVIGORFILE_TYPE_CHECK": false, "IS_HVIGORFILE_TYPE_CHECK": false,
"TASK_TIME": { "TASK_TIME": {
"1043bfc77febe75fafec0c4309faccf1": { "1043bfc77febe75fafec0c4309faccf1": {
"ConfigureCmake": 303500, "ConfigureCmake": 139834,
"PreCheckSyscap": 534625, "PreCheckSyscap": 155375,
"ProcessIntegratedHsp": 2304750, "ProcessIntegratedHsp": 671875,
"BuildNativeWithCmake": 812250, "BuildNativeWithCmake": 328292,
"SyscapTransform": 2126459, "SyscapTransform": 1325500,
"BuildNativeWithNinja": 1346958, "BuildNativeWithNinja": 746250,
"BuildJS": 2715708, "BuildJS": 729791,
"CompileArkTS": 2690421000, "SignHap": 268208,
"PackageHap": 569532292, "CollectDebugSymbol": 1275459,
"SignHap": 836333, "assembleHap": 55416
"CollectDebugSymbol": 2402750,
"assembleHap": 185542
} }
}, },
"TOTAL_TIME": 3678888500, "TOTAL_TIME": 313315500,
"BUILD_ID": "202504011919153050" "BUILD_ID": "202504022212417800"
} }
} }

View File

@ -28,6 +28,12 @@ export enum SenderRole {
STUDENT = 'student' STUDENT = 'student'
} }
// 题目选项
export interface QuestionOption {
index: number;
content: string;
}
// 课堂模型 // 课堂模型
export class ClassSessionModel { export class ClassSessionModel {
sessionId: string = ''; // 课堂ID由系统生成 sessionId: string = ''; // 课堂ID由系统生成
@ -128,17 +134,6 @@ export class QuestionModel {
} }
} }
// 题目选项
export class QuestionOption {
index: number = 0; // 选项索引
content: string = ''; // 选项内容
constructor(index: number = 0, content: string = '') {
this.index = index;
this.content = content;
}
}
// 学生答案 // 学生答案
export class QuestionAnswer { export class QuestionAnswer {
studentAccount: string = ''; // 学生账号 studentAccount: string = ''; // 学生账号

File diff suppressed because it is too large Load Diff