feat(v2.7): 增加管理驾驶舱与治理字典服务

This commit is contained in:
2026-07-08 16:19:29 +08:00
parent 0f57e75689
commit bcbe84bb6e
10 changed files with 637 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
import { Module } from '@nestjs/common';
import { ManagementController } from './management.controller';
import { ManagementService } from './management.service';
@Module({
controllers: [ManagementController],
providers: [ManagementService],
})
export class ManagementModule {}