Files
NextEdu/src/shared/db/schema.ts

32 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// Barrel export for schema modules.
// 拆分自原 schema.ts2245 行)→ 按业务域分组的多个子文件,每个 < 500 行。
// 所有原 import 路径 `@/shared/db/schema` 仍然有效(文件优先于同名文件夹解析)。
export * from "./schema/users";
export * from "./schema/rbac";
export * from "./schema/knowledge-points";
export * from "./schema/questions";
export * from "./schema/academic";
export * from "./schema/school";
export * from "./schema/classes";
export * from "./schema/exams";
export * from "./schema/homework";
export * from "./schema/ai-providers";
export * from "./schema/announcements";
export * from "./schema/audit";
export * from "./schema/grade-records";
export * from "./schema/files";
export * from "./schema/course-plans";
export * from "./schema/messaging";
export * from "./schema/notifications";
export * from "./schema/attendance";
export * from "./schema/scheduling";
export * from "./schema/elective-courses";
export * from "./schema/learning-diagnostic";
export * from "./schema/lesson-preparation";
export * from "./schema/system-settings";
export * from "./schema/error-book";
export * from "./schema/practice";
export * from "./schema/standards";
export * from "./schema/formative-assessment";