25 lines
616 B
Python
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', '', '正文'],
|
|
]
|
|
}
|
|
]
|