Files
one-pipe-system/src/config/constants/index.ts
luo c1a7118d35
All checks were successful
构建并部署前端到测试环境 / build-and-deploy (push) Successful in 4m40s
fix: 将导出列表分成三个模块
2026-07-09 15:20:28 +08:00

37 lines
596 B
TypeScript

/**
* 公共配置和常量统一导出
*/
// 运营商相关
export * from './operators'
// 网卡状态相关
export * from './cardStatus'
// 用户角色相关
export * from './userRoles'
// 佣金相关
export * from './commission'
// 通用状态相关
export * from './status'
// IoT卡相关
export * from './iotCard'
// 运营商类型相关
export * from './carrierTypes'
// 套餐管理相关
export * from './package'
// 角色类型相关
export * from './roleTypes'
// 启用状态相关
export * from './enableStatus'
// 导出任务相关
export * from './exportTask'