| 123456789101112131415161718192021222324 |
- // 导出实体
- export { Platform } from './entities/index.js';
- // 导出服务
- export { PlatformService } from './services/index.js';
- // 导出Schema和类型
- export {
- PlatformSchema,
- CreatePlatformSchema,
- UpdatePlatformSchema,
- DeletePlatformSchema,
- PaginationQuerySchema,
- SearchPlatformQuerySchema,
- type Platform as PlatformType,
- type CreatePlatformDto,
- type UpdatePlatformDto,
- type DeletePlatformDto,
- type PaginationQuery,
- type SearchPlatformQuery
- } from './schemas/index.js';
- // 导出路由
- export { platformRoutes, platformRoutesDefault, platformCustomRoutes, platformCrudRoutes } from './routes/index.js';
|