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 = [ self.apis = [
{ {
'name': 'getAnnc', 'name': 'getAnnc',
'desc': '获取背包物品列表', 'desc': '获取公告',
'group': 'Bag', 'group': 'Annc',
'url': 'webapp/index.php?c=Annc&a=getAnnc', 'url': 'webapp/index.php?c=Annc&a=getAnnc',
'params': [ 'params': [
_common.ReqHead(), _common.ReqHead(),

View File

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