diff --git a/doc/Annc.py b/doc/Annc.py new file mode 100644 index 00000000..3883501d --- /dev/null +++ b/doc/Annc.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- + +import _common + +class Annc(object): + + def __init__(self): + self.apis = [ + { + 'name': 'getAnnc', + 'desc': '获取背包物品列表', + 'group': 'Bag', + 'url': 'webapp/index.php?c=Annc&a=getAnnc', + 'params': [ + _common.ReqHead(), + ], + 'response': [ + _common.RspHead(), + ['id', '', 'id'], + ['tile', '', '标题'], + ['content', '', '正文'], + ] + } + ]