response_user.go 664 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package ups_sdk
  2. type RegisterUserResponse struct {
  3. msgResponse
  4. }
  5. type DeleteUserResponse struct {
  6. msgResponse
  7. }
  8. type IdentifyResponse struct {
  9. msgResponse
  10. UserExist bool `json:"userExist"`
  11. Pass bool `json:"pass"`
  12. }
  13. type UpdateUserUserNameResponse struct {
  14. msgResponse
  15. }
  16. type UpdateUserPasswordResponse struct {
  17. msgResponse
  18. }
  19. type MergeUserResponse struct {
  20. msgResponse
  21. }
  22. type GetUsersResponse struct {
  23. msgResponse
  24. QueryUserResult
  25. }
  26. type QueryUserResult struct {
  27. Infos []UserInfo `json:"infos"`
  28. TotalCount int64 `json:"totalCount"`
  29. PageNo int `json:"pageNo"`
  30. }
  31. type UserInfo struct {
  32. UserName string `json:"name"`
  33. }