21 lines
415 B
Python
21 lines
415 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class PayNotify(object):
|
|
|
|
def __init__(self):
|
|
self.apis_ = [
|
|
{
|
|
'desc': 'payNotify',
|
|
'group': 'PayNotify',
|
|
'url': 'webapp/index.php?c=PayNotify&a=payNotify',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
]
|
|
},
|
|
]
|