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