api-server/src/modules/temporary-reading-material/temporary-reading-material.module.ts
wangdl 38a8629e42
Some checks failed
Deploy API Server / build-and-deploy (push) Failing after 11s
feat: M8 学习信息收集系统完整实现
Phase 1-2: 设计文档 + 数据库 (ReadingEvent/MaterialReadingProgress/TemporaryReadingMaterial/LearningSession扩展/DailyLearningActivity扩展/LearningRecord)
Phase 3: 批量上报 + 校验去重 + ReadingEventProcessorService
Phase 4: 4表聚合管线 (LearningSession/MaterialReadingProgress/DailyLearningActivity/LearningRecord)
Phase 5: 查询接口 (progress/continue/summary/trend/heatmap/history/reprocess)
Phase 6: 权限校验 + session中断清理 + API文档

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-06-08 21:09:13 +08:00

11 lines
378 B
TypeScript

import { Module } from '@nestjs/common';
import { PrismaModule } from '../../infrastructure/prisma.module';
import { TemporaryReadingMaterialService } from './temporary-reading-material.service';
@Module({
imports: [PrismaModule],
providers: [TemporaryReadingMaterialService],
exports: [TemporaryReadingMaterialService],
})
export class TemporaryReadingMaterialModule {}