mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-12 07:02:14 +08:00
24 lines
400 B
Go
24 lines
400 B
Go
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
|
|
}
|