25 lines
632 B
Python
25 lines
632 B
Python
# -*- coding: utf-8 -*-
|
||
|
||
import _common
|
||
|
||
class Chip(object):
|
||
|
||
def __init__(self):
|
||
self.apis = [
|
||
{
|
||
'name': 'chipList',
|
||
'desc': '获取芯片列表',
|
||
'group': 'Bag',
|
||
'url': 'webapp/index.php?c=Chip&a=chipList',
|
||
'params': [
|
||
_common.ReqHead(),
|
||
['type', '', '芯片类型:1 角色;2 枪械'],
|
||
],
|
||
'response': [
|
||
_common.RspHead(),
|
||
['!data', [_common.Chip()], '芯片列表']
|
||
]
|
||
},
|
||
|
||
]
|