index.ts 596 B

123456789101112131415161718192021222324252627282930
  1. import account from './account'
  2. import websocket from './websocket'
  3. import tms from './tms'
  4. import message from './message'
  5. import pay from './pay'
  6. import allinpay from './allinpay'
  7. import settle from './settle'
  8. import user from './user'
  9. import strategy from './strategy'
  10. export default {
  11. /** 账户中心 */
  12. account,
  13. /** websocket打印中心 */
  14. websocket,
  15. /** 运力中心 */
  16. tms,
  17. /** 消息中心 */
  18. message,
  19. /** 支付中心 */
  20. pay,
  21. /** 通联支付 */
  22. allinpay,
  23. /** 结算中心 */
  24. settle,
  25. /** 用户中心 */
  26. user,
  27. /** 运营策略中心 */
  28. strategy,
  29. }