25 lines
656 B
Python
25 lines
656 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import _common
|
|
|
|
class BcUser(object):
|
|
|
|
def __init__(self):
|
|
self.apis = [
|
|
{
|
|
'name': 'info',
|
|
'desc': '获取用户信息',
|
|
'group': 'User',
|
|
'url': 'webapp/index.php?c=BcUser&a=login',
|
|
'params': [
|
|
_common.ReqHead(),
|
|
['account', '', '钱包账号'],
|
|
['token', '', 'token'],
|
|
],
|
|
'response': [
|
|
_common.RspHead(),
|
|
['info',_common.BcUserInfo(), '用户信息']
|
|
]
|
|
},
|
|
]
|