From 549f138dd966b134c6f1685881d86894c2bf7b6a Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 9 Jul 2024 11:16:04 +0800 Subject: [PATCH] 1 --- doc/Annc.py | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 doc/Annc.py 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', '', '正文'], + ] + } + ]