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,23 @@
package request
import "../common"
type MemberInfoGetRequest struct {
common.Model
}
func (MemberInfoGetRequest) GetMethod() string {
return "member.info.get"
}
func (MemberInfoGetRequest) GetVersion() string {
return "1.0"
}
func (MemberInfoGetRequest) GetRequestType() common.RequestType {
return common.GET
}
func (req MemberInfoGetRequest) GetModel() common.Model {
return req.Model
}