game2006api/doc/Recharge.py
aozhiwei 4632b3d3f3 1
2024-07-25 15:35:51 +08:00

23 lines
584 B
Python

# -*- coding: utf-8 -*-
import _common
class Recharge(object):
def __init__(self):
self.apis = [
{
'name': 'goodsList',
'desc': '充值-商品列表',
'group': 'Recharge',
'url': 'webapp/index.php?c=Recharge&a=goodsList',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
['!goods', [_common.RechargeGoods()], '商品列表']
]
}
]