Initial commit: One Pipe System

完整的管理系统,包含账户管理、卡片管理、套餐管理、财务管理等功能模块。

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
sexygoat
2026-01-22 16:35:33 +08:00
commit 222e5bb11a
495 changed files with 145440 additions and 0 deletions

22
src/api/modules/index.ts Normal file
View File

@@ -0,0 +1,22 @@
/**
* API 服务模块统一导出
*/
// 旧模块(待重构)
export * from './article'
// 新模块
export { AuthService } from './auth'
export { RoleService } from './role'
export { PermissionService } from './permission'
export { AccountService } from './account'
export { PlatformAccountService } from './platformAccount'
export { ShopAccountService } from './shopAccount'
export { ShopService } from './shop'
export { CardService } from './card'
// TODO: 按需添加其他业务模块
// export { PackageService } from './package'
// export { DeviceService } from './device'
// export { CommissionService } from './commission'
// export { SettingService } from './setting'