You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
430 B
21 lines
430 B
5 years ago
|
#!/usr/bin/python
|
||
|
# -*- coding: UTF-8 -*-
|
||
|
from common import RequestTypes
|
||
|
from request.BaseRequest import BaseRequest
|
||
|
|
||
|
|
||
|
class MemberInfoGetRequest(BaseRequest):
|
||
|
"""获取会员信息请求"""
|
||
|
|
||
|
def __init__(self):
|
||
|
BaseRequest.__init__(self)
|
||
|
|
||
|
def get_method(self):
|
||
|
return 'member.info.get'
|
||
|
|
||
|
def get_version(self):
|
||
|
return '1.0'
|
||
|
|
||
|
def get_request_type(self):
|
||
|
return RequestTypes.GET
|