24 lines
651 B
Python
24 lines
651 B
Python
# -*- coding: utf-8 -*-
|
||
|
||
import _common
|
||
|
||
class Ranking(object):
|
||
|
||
def __init__(self):
|
||
self.apis = [
|
||
{
|
||
'name': 'rankingList',
|
||
'desc': '获取排行榜',
|
||
'group': 'Ranking',
|
||
'url': 'webapp/index.php?c=Ranking&a=rankingList',
|
||
'params': [
|
||
_common.ReqHead(),
|
||
['type', 0, '排行榜类型 1:积分榜']
|
||
],
|
||
'response': [
|
||
_common.RspHead(),
|
||
['ranking_list', _common.RankingList(), '排行榜数据']
|
||
]
|
||
}
|
||
]
|