This commit is contained in:
aozhiwei 2024-11-29 10:44:37 +08:00
parent 9a7969f8c2
commit 5d15963669
2 changed files with 24 additions and 0 deletions

View File

@ -212,4 +212,20 @@ class AAWheel(object):
['order_id', '', '订单id'],
]
},
{
'method': 'GET',
'desc': '内购商店-查询订单状态',
'name': '/api/v1/inapp_shop/order/:order_id',
'group': '!!AAWheel',
'url': 'https://wheel-test.kingsome.cn/api/v1/inapp_shop/order/:order_id',
'headers': _common.JwtHeader,
'is_json_params': True,
'params': [
['order_id', '', '订单id'],
],
'response': [
_common.RspHead(),
['data', _common.WheelInappOrder(), '订单信息'],
]
},
]

View File

@ -2039,3 +2039,11 @@ class WheelBuff(object):
['buff_id', 0, 'buff配置表id'],
['expires_time', 0, '过期时间(单位秒)'],
]
class WheelInappOrder(object):
def __init__(self):
self.fields = [
['order_id', '', '订单id'],
['status', '', '0:等待支付成功 1:支付成功 2:已发货'],
]