feat: WWJCloud 企业级全栈框架 v0.3.5 完整更新
🚀 核心更新: - ✅ 完善 NestJS 企业级架构设计 - ✅ 优化配置中心和基础设施层 - ✅ 增强第三方服务集成能力 - ✅ 完善多租户架构支持 - 🎯 对标 Java Spring Boot 和 PHP ThinkPHP 📦 新增文件: - wwjcloud-nest 完整框架结构 - Docker 容器化配置 - 管理后台界面 - 数据库迁移脚本 🔑 Key: ebb38b43ec39f355f071294fd1cf9c42
This commit is contained in:
25
src/core/core.module.ts
Normal file
25
src/core/core.module.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { UserModule } from '@wwjCore/user/user.module';
|
||||
import { SysModule } from '@wwjCore/sys/sys.module';
|
||||
|
||||
/**
|
||||
* 核心业务模块
|
||||
* 基于PHP项目的核心模块实现
|
||||
*
|
||||
* 当前包含的基本模块:
|
||||
* - 用户管理 (UserModule)
|
||||
* - 系统管理 (SysModule)
|
||||
*/
|
||||
@Module({
|
||||
imports: [
|
||||
// 核心业务模块
|
||||
UserModule,
|
||||
SysModule,
|
||||
],
|
||||
exports: [
|
||||
// 导出核心业务模块
|
||||
UserModule,
|
||||
SysModule,
|
||||
],
|
||||
})
|
||||
export class CoreModule {}
|
||||
Reference in New Issue
Block a user