game2005api/doc/PayController.py
2021-11-17 15:55:16 +08:00

70 lines
1.7 KiB
Python

# -*- coding: utf-8 -*-
import _common
class PayController(object):
def __init__(self):
self.apis = [
{
'desc': 'getPayInfo',
'url': 'webapp/index.php?c=PayController&a=getPayInfo',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'getVipInfo',
'url': 'webapp/index.php?c=PayController&a=getVipInfo',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'getVipReward',
'url': 'webapp/index.php?c=PayController&a=getVipReward',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'buyItem',
'url': 'webapp/index.php?c=PayController&a=buyItem',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'getOrderInfo',
'url': 'webapp/index.php?c=PayController&a=getOrderInfo',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
{
'desc': 'addADtimes',
'url': 'webapp/index.php?c=PayController&a=addADtimes',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
]
},
]