responses.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package v1
  2. import (
  3. "strconv"
  4. "time"
  5. )
  6. type ResponseMeDonates struct {
  7. TotalAmount int64 `json:"totalAmount"`
  8. TotalCount int64 `json:"totalCount"`
  9. }
  10. type ResponseMe struct {
  11. Success bool `json:"success"`
  12. Message string `json:"message"`
  13. NickName string `json:"nickname"`
  14. PubID string `json:"pubId"`
  15. Page string `json:"page"`
  16. IsActive bool `json:"isActive"`
  17. IsPublic bool `json:"isPublic"`
  18. Donates ResponseMeDonates `json:"donates"`
  19. CreatedAt string `json:"createdAt"`
  20. }
  21. func (r ResponseMe) CreatedAtTime() time.Time {
  22. result, err := time.Parse("2006-01-02 15:04:05", r.CreatedAt)
  23. if err != nil {
  24. return time.Time{}
  25. }
  26. return result
  27. }
  28. // -----------------------------------------------------------------------------
  29. type ResponseDonatesContent struct {
  30. PubID string `json:"pubId"`
  31. ClientName string `json:"clientName"`
  32. Message string `json:"message"`
  33. Amount string `json:"amount"`
  34. Currency string `json:"currency"`
  35. Goal string `json:"goal"`
  36. IsPublished bool `json:"isPublished"`
  37. CreatedAt string `json:"createdAt"`
  38. }
  39. func (r ResponseDonatesContent) AmountInt64() int64 {
  40. var result int64
  41. var err error
  42. if result, err = strconv.ParseInt(r.Amount, 10, 64); err != nil {
  43. result = 0
  44. }
  45. return result
  46. }
  47. func (r ResponseDonatesContent) CreatedAtTime() time.Time {
  48. result, err := time.Parse("2006-01-02 15:04:05", r.CreatedAt)
  49. if err != nil {
  50. return time.Time{}
  51. }
  52. return result
  53. }
  54. type ResponseDonates struct {
  55. Success bool `json:"success"`
  56. Message string `json:"message"`
  57. Content []ResponseDonatesContent `json:"content"`
  58. Page int64 `json:"page"`
  59. Size int64 `json:"size"`
  60. Pages int64 `json:"pages"`
  61. First bool `json:"first"`
  62. Last bool `json:"last"`
  63. Total int64 `json:"total"`
  64. }
  65. // -----------------------------------------------------------------------------
  66. type ResponseClientsClients struct {
  67. ClientName string `json:"clientName"`
  68. TotalAmount int64 `json:"totalAmount"`
  69. }
  70. type ResponseClients struct {
  71. Success bool `json:"success"`
  72. Message string `json:"message"`
  73. Clients []ResponseClientsClients `json:"clients"`
  74. }