diff --git a/src/app.module.ts b/src/app.module.ts index f430b37..23ff848 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -43,6 +43,12 @@ import { ItemRateModule } from './modules/item-related/item-rate/item-rate.modul import { ItemRateModel } from './modules/item-related/item-rate/data/models/item-rate.model'; import { GoogleCalendarModule } from './modules/configuration/google-calendar/google-calendar.module'; +import { ReportModule } from './modules/reports/report/report.module'; +import { ReportBookmarkModule } from './modules/reports/report-bookmark/report-bookmark.module'; +import { ReportExportModule } from './modules/reports/report-export/report-export.module'; +import { ReportBookmarkModel } from './modules/reports/shared/models/report-bookmark.model'; +import { ExportReportHistoryModel } from './modules/reports/shared/models/export-report-history.model'; + @Module({ imports: [ ApmModule.register(), @@ -72,6 +78,10 @@ import { GoogleCalendarModule } from './modules/configuration/google-calendar/go UserModel, VipCategoryModel, VipCodeModel, + + // report + ReportBookmarkModel, + ExportReportHistoryModel, ], synchronize: false, }), @@ -104,6 +114,11 @@ import { GoogleCalendarModule } from './modules/configuration/google-calendar/go // session SeasonTypeModule, SeasonPeriodModule, + + // report + ReportModule, + ReportBookmarkModule, + ReportExportModule, ], controllers: [], providers: [ diff --git a/src/modules/reports/report-bookmark/report-bookmark.module.ts b/src/modules/reports/report-bookmark/report-bookmark.module.ts new file mode 100644 index 0000000..d7c0fc7 --- /dev/null +++ b/src/modules/reports/report-bookmark/report-bookmark.module.ts @@ -0,0 +1,8 @@ +import { Module } from '@nestjs/common'; + +@Module({ + imports: [], + controllers: [], + providers: [], +}) +export class ReportBookmarkModule {} diff --git a/src/modules/reports/report-export/report-export.module.ts b/src/modules/reports/report-export/report-export.module.ts new file mode 100644 index 0000000..47fd493 --- /dev/null +++ b/src/modules/reports/report-export/report-export.module.ts @@ -0,0 +1,8 @@ +import { Module } from '@nestjs/common'; + +@Module({ + imports: [], + controllers: [], + providers: [], +}) +export class ReportExportModule {} diff --git a/src/modules/reports/report/report.module.ts b/src/modules/reports/report/report.module.ts new file mode 100644 index 0000000..6d8ca42 --- /dev/null +++ b/src/modules/reports/report/report.module.ts @@ -0,0 +1,8 @@ +import { Module } from '@nestjs/common'; + +@Module({ + imports: [], + controllers: [], + providers: [], +}) +export class ReportModule {}