24 lines
658 B
Python
24 lines
658 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class PayMethod(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'name': 'getPayMethods',
|
|
'desc': '获取支付方式',
|
|
'group': 'PayMethod',
|
|
'url': 'webapp/index.php?c=PayMethod&a=getPayMethods',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
['token_type', 0, "选用币种"],
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
['!pay_methods', [_common.PayMethod()], '支付方式列表'],
|
|
]
|
|
}
|
|
]
|