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