This commit is contained in:
aozhiwei 2022-03-11 11:37:07 +08:00
parent 525c079c95
commit 83e0be01c9

View File

@ -6,6 +6,23 @@ class BcShop(object):
def __init__(self):
self.apis = [
{
'name': 'searchProduct',
'desc': '获取出售的商品列表',
'group': 'BcShop',
'url': 'webapp/index.php?c=BcShop&a=searchProduct',
'params': [
['account', '', '钱包账号'],
['tips', '', 'tips'],
['nonce', '', 'nonce'],
['signature', '', '签名'],
['net_id', '', '网络id'],
],
'response': [
_common.RspHead(),
['token', '', 'token'],
]
},
{
'name': 'productOnline',
'desc': '上架商品',
@ -74,21 +91,4 @@ class BcShop(object):
['token', '', 'token'],
]
},
{
'name': 'searchProduct',
'desc': '获取出售的商品列表',
'group': 'BcShop',
'url': 'webapp/index.php?c=BcShop&a=searchProduct',
'params': [
['account', '', '钱包账号'],
['tips', '', 'tips'],
['nonce', '', 'nonce'],
['signature', '', '签名'],
['net_id', '', '网络id'],
],
'response': [
_common.RspHead(),
['token', '', 'token'],
]
},
]