feat: 完成PHP到NestJS的100%功能迁移

- 迁移25个模块,包含95个控制器和160个服务
- 新增验证码管理、登录配置、云编译等模块
- 完善认证授权、会员管理、支付系统等核心功能
- 实现完整的队列系统、配置管理、监控体系
- 确保100%功能对齐和命名一致性
- 支持生产环境部署
This commit is contained in:
万物街
2025-09-10 08:04:28 +08:00
parent a2d6a47601
commit 7a20a0c50a
551 changed files with 35628 additions and 2025 deletions

View File

@@ -1,4 +1,4 @@
// 导出所有通用模块
// Module exports
export * from './admin/admin.module';
export * from './member/member.module';
export * from './rbac/rbac.module';
@@ -7,14 +7,15 @@ export * from './auth/auth.module';
export * from './upload/upload.module';
export * from './jobs/jobs.module';
export * from './event-bus/event-bus.module';
export * from './sys/sys.module';
export * from './niucloud/niucloud.module';
// 注意Site/Pay 模块由 app.module.ts 显式引入,避免重复导出导致歧义
// 导出认证相关
// Guard exports
export * from './auth/guards/JwtAuthGuard';
export * from './auth/guards/RolesGuard';
export * from './auth/guards/GlobalAuthGuard';
export * from './auth/decorators/RolesDecorator';
// 导出设置相关模块
// Settings exports
export * from './settings';