index.ts 639 B

123456789101112131415161718192021222324
  1. // 导出实体
  2. export { Platform } from './entities/index.js';
  3. // 导出服务
  4. export { PlatformService } from './services/index.js';
  5. // 导出Schema和类型
  6. export {
  7. PlatformSchema,
  8. CreatePlatformSchema,
  9. UpdatePlatformSchema,
  10. DeletePlatformSchema,
  11. PaginationQuerySchema,
  12. SearchPlatformQuerySchema,
  13. type Platform as PlatformType,
  14. type CreatePlatformDto,
  15. type UpdatePlatformDto,
  16. type DeletePlatformDto,
  17. type PaginationQuery,
  18. type SearchPlatformQuery
  19. } from './schemas/index.js';
  20. // 导出路由
  21. export { platformRoutes, platformRoutesDefault, platformCustomRoutes, platformCrudRoutes } from './routes/index.js';