feat(app): update
This commit is contained in:
20
pkg/dto/request/GetUserChatroomRequest.go
Normal file
20
pkg/dto/request/GetUserChatroomRequest.go
Normal file
@ -0,0 +1,20 @@
|
||||
package request
|
||||
|
||||
import "errors"
|
||||
|
||||
type GetUserChatroomRequest struct {
|
||||
AccessToken string
|
||||
TargetUserId string // 获取哪个用户的 获取自己的不传
|
||||
|
||||
}
|
||||
|
||||
// 参数合法性检验
|
||||
func (request *GetUserChatroomRequest) CheckParameter() (err error) {
|
||||
|
||||
if len(request.AccessToken) == 0 {
|
||||
err = errors.New("AccessToken不能为空")
|
||||
return
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
Reference in New Issue
Block a user