http.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package model
  2. // TokenResq .
  3. type TokenResq struct {
  4. CommonResq
  5. Data *Token `json:"data"`
  6. }
  7. // Token .
  8. type Token struct {
  9. Token string `json:"token"`
  10. URL string `json:"url"`
  11. }
  12. // CommonResq .
  13. type CommonResq struct {
  14. Code int64 `json:"code"`
  15. TS int64 `json:"ts"`
  16. Message string `json:"message"`
  17. }
  18. // ResourceCodeResq .
  19. type ResourceCodeResq struct {
  20. CommonResq
  21. Data *ResourceCode `json:"data"`
  22. }
  23. // ResourceCode .
  24. type ResourceCode struct {
  25. Code string `json:"code"`
  26. Status int8 `json:"status"`
  27. Days int32 `json:"days"`
  28. BatchCodeID int64 `json:"batch_code_id"`
  29. }
  30. // CMAccountInfo is
  31. type CMAccountInfo struct {
  32. Nickname string `json:"nickname"`
  33. CertificationTitle string `json:"certification_title"`
  34. CreditCode string `json:"credit_code"`
  35. CompanyName string `json:"company_name"`
  36. Organization string `json:"organization"`
  37. OrganizationType string `json:"organization_type"`
  38. }
  39. // OfficialPermissionResponse is
  40. type OfficialPermissionResponse struct {
  41. DeniedRoles []int8 `json:"denied_roles"`
  42. Metadata map[string]interface{} `json:"metadata"`
  43. }