This commit is contained in:
tanghc
2020-06-17 10:36:22 +08:00
parent f66e2f8891
commit 6406f023db
41 changed files with 1195 additions and 2 deletions

View 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