fix: 创建base.dto解决612个编译错误

This commit is contained in:
wanwu
2025-10-29 11:10:46 +08:00
parent 8244f16808
commit 39262e638d
3 changed files with 11 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{
"timestamp": "2025-10-28T07:58:44.725Z",
"timestamp": "2025-10-29T02:54:59.685Z",
"stats": {
"startTime": "2025-10-28T07:58:42.974Z",
"startTime": "2025-10-29T02:54:58.550Z",
"endTime": null,
"filesProcessed": 1215,
"modulesGenerated": 6,

View File

@@ -0,0 +1,8 @@
/**
* DTO基类
* 所有DTO都继承此类
*/
export class BaseDto {
// 基础DTO类可以添加通用字段
}

View File

@@ -16,7 +16,7 @@ export class ControllerModule {
return {
module: ControllerModule,
imports: [ServiceModule],
imports: [ServiceModule.register()],
controllers,
providers: [],
exports: [],