"use strict"; const sheep_request_index = require("../../request/index.js"); const PayChannelApi = { // 获得指定应用的开启的支付渠道编码列表 getEnableChannelCodeList: (appId) => { return sheep_request_index.request({ url: "/pay/channel/get-enable-code-list", method: "GET", params: { appId } }); } }; exports.PayChannelApi = PayChannelApi; //# sourceMappingURL=channel.js.map