game2006api/doc/BcShop.py
aozhiwei 0668e9e6b1 1
2022-03-11 14:07:43 +08:00

26 lines
774 B
Python

# -*- coding: utf-8 -*-
import _common
class BcShop(object):
def __init__(self):
self.apis = [
{
'name': 'searchProduct',
'desc': '获取出售的商品列表',
'group': 'BcShop',
'url': 'webapp/index.php?c=BcShop&a=searchProduct',
'params': [
['account', 0, '钱包账号'],
['page', 0, '获取第几页数据'],
['sort', '', '排序字段'],
],
'response': [
_common.RspHead(),
['!rows', [_common.PreSaleBox()], '商品信息'],
['page', _common.Page(), '分页信息'],
]
}
]