| 123456789101112131415161718192021222324252627282930 |
- import account from './account'
- import websocket from './websocket'
- import tms from './tms'
- import message from './message'
- import pay from './pay'
- import allinpay from './allinpay'
- import settle from './settle'
- import user from './user'
- import strategy from './strategy'
- export default {
- /** 账户中心 */
- account,
- /** websocket打印中心 */
- websocket,
- /** 运力中心 */
- tms,
- /** 消息中心 */
- message,
- /** 支付中心 */
- pay,
- /** 通联支付 */
- allinpay,
- /** 结算中心 */
- settle,
- /** 用户中心 */
- user,
- /** 运营策略中心 */
- strategy,
- }
|