This commit is contained in:
aozhiwei 2024-07-09 11:38:25 +08:00
parent 549f138dd9
commit 9fdcb801b8
2 changed files with 12 additions and 2 deletions

View File

@ -8,8 +8,8 @@ class Annc(object):
self.apis = [
{
'name': 'getAnnc',
'desc': '获取背包物品列表',
'group': 'Bag',
'desc': '获取公告',
'group': 'Annc',
'url': 'webapp/index.php?c=Annc&a=getAnnc',
'params': [
_common.ReqHead(),

View File

@ -0,0 +1,10 @@
<?php
class AnncController extends BaseController {
public function getAnnc()
{
}
}