123456789101112 |
- # coding=utf-8
- from apps.web.core.payment import PaymentGateway
- class LedgerConsumePaymentGateway(PaymentGateway):
- def __init__(self, app, gateway_type):
- super(LedgerConsumePaymentGateway, self).__init__(app)
- self.__gateway_type__ = gateway_type
- def __repr__(self):
- return '<PlatformWalletPaymentGateway(occupantId = %s)>' % (
- str(self.occupantId))
|