game2006api/doc/Staking.py
aozhiwei c1e7b94b92 1
2023-08-22 19:01:45 +08:00

24 lines
633 B
Python

# -*- coding: utf-8 -*-
import _common
class Staking(object):
def __init__(self):
self.apis = [
{
'name': 'getGoodsList',
'desc': '获取商品列表',
'group': 'Staking',
'url': 'webapp/index.php?c=Staking&a=getGoodsList',
'params': [
_common.ReqHead(),
['shop_id', 0, '商店id'],
],
'response': [
_common.RspHead(),
['!goods_list', [_common.Goods()], '商品列表'],
]
},
]