game2006api/doc/Annc.py
aozhiwei 9fdcb801b8 1
2024-07-09 11:38:25 +08:00

25 lines
616 B
Python

# -*- coding: utf-8 -*-
import _common
class Annc(object):
def __init__(self):
self.apis = [
{
'name': 'getAnnc',
'desc': '获取公告',
'group': 'Annc',
'url': 'webapp/index.php?c=Annc&a=getAnnc',
'params': [
_common.ReqHead(),
],
'response': [
_common.RspHead(),
['id', '', 'id'],
['tile', '', '标题'],
['content', '', '正文'],
]
}
]