feat(app): update
This commit is contained in:
20
pkg/dto/request/GetHomeDataRequest.go
Normal file
20
pkg/dto/request/GetHomeDataRequest.go
Normal file
@ -0,0 +1,20 @@
|
||||
package request
|
||||
|
||||
import "errors"
|
||||
|
||||
type GetHomeDataRequest struct {
|
||||
BaseRequest
|
||||
PageCode string
|
||||
GuildId string
|
||||
}
|
||||
|
||||
// 参数合法性检验
|
||||
func (request *GetHomeDataRequest) CheckParameter() (err error) {
|
||||
|
||||
if len(request.AccessToken) == 0 {
|
||||
err = errors.New("AccessToken不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
Reference in New Issue
Block a user