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