import ServiceBase from "./ServiceBase"; /** * 支付服务 */ export default class PaymentService extends ServiceBase { async offlinePay() { } async swipePay() { } async getPayResult() { } async cancel() { } async refund() { } async addPaymentLog() { } async wechatCallback() { } async alipayCallback() { } async exportPaymentLog() { } }