feat: add exam score management
Some checks failed
CI 检查 / lint (pull_request) Has been cancelled
CI 检查 / typecheck (pull_request) Has been cancelled
CI 检查 / test (pull_request) Has been cancelled

This commit is contained in:
2026-07-21 16:04:17 +08:00
parent 37ef6f9dd7
commit cbc04fea4f
27 changed files with 1061 additions and 16 deletions

View File

@@ -39,6 +39,7 @@ import {
StudentProfile,
StudentEnrollment,
ExamScore,
Exam,
LearningRecord,
ExpenseType,
ResultArchive,
@@ -51,7 +52,8 @@ import {
} from './entities';
import { AuthModule } from './auth/auth.module';
import { InitialSchema1784520727860 } from './migrations/1784520727860-InitialSchema';
const allMigrations = [InitialSchema1784520727860];
import { AddExamManagement1784600000000 } from './migrations/1784600000000-AddExamManagement';
const allMigrations = [InitialSchema1784520727860, AddExamManagement1784600000000];
import { AuthorizationModule } from './authorization';
import { RbacModule } from './rbac/rbac.module';
import { StudentsModule } from './students/students.module';
@@ -81,6 +83,7 @@ import { AgentToolsModule } from './agent-tools';
import { AiConfigModule } from './ai-config/ai-config.module';
import { WalletsModule } from './wallets/wallets.module';
import { FinancialOperationsModule } from './financial-operations/financial-operations.module';
import { ExamsModule } from './exams/exams.module';
import {
IntegrationConfig,
@@ -137,6 +140,7 @@ import { IntegrationConfigModule } from './integration/config/config.module';
StudentProfile,
StudentEnrollment,
ExamScore,
Exam,
LearningRecord,
ExpenseType,
ArchiveAttachment,
@@ -178,6 +182,7 @@ import { IntegrationConfigModule } from './integration/config/config.module';
AuthModule,
RbacModule,
StudentsModule,
ExamsModule,
RoomsModule,
OccupanciesModule,
ExpensesModule,