23 lines
584 B
Python
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()], '商品列表']
|
|
]
|
|
}
|
|
]
|