Files
one-pipe-system/src/api/modules/index.ts
sexygoat 8a1388608c
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 2m25s
fetch(add): 新增企业设备授权
2026-01-30 15:39:19 +08:00

32 lines
1.1 KiB
TypeScript

/**
* 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'
export { CommissionService } from './commission'
export { EnterpriseService } from './enterprise'
export { CustomerAccountService } from './customerAccount'
export { StorageService } from './storage'
export { AuthorizationService } from './authorization'
export { DeviceService } from './device'
export { CarrierService } from './carrier'
export { PackageSeriesService } from './packageSeries'
export { PackageManageService } from './packageManage'
export { ShopPackageAllocationService } from './shopPackageAllocation'
export { ShopSeriesAllocationService } from './shopSeriesAllocation'
export { OrderService } from './order'
// TODO: 按需添加其他业务模块
// export { SettingService } from './setting'