mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
3.2.0
This commit is contained in:
20
sop-sdk/sdk-python/request/MemberInfoGetRequest.py
Normal file
20
sop-sdk/sdk-python/request/MemberInfoGetRequest.py
Normal file
@@ -0,0 +1,20 @@
|
||||
#!/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
|
Reference in New Issue
Block a user