32 lines
1.1 KiB
TypeScript
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'
|