pendant.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. package model
  2. import (
  3. "strconv"
  4. usmdl "go-common/app/service/main/usersuit/model"
  5. )
  6. // EquipPHP struct.
  7. type EquipPHP struct {
  8. Pid int64 `json:"pid"`
  9. Coins float64 `json:"coins"`
  10. Image string `json:"image"`
  11. ImageModel string `json:"image_model"`
  12. FaceURL string `json:"face_url"`
  13. }
  14. // GroupPHP php group result
  15. type GroupPHP struct {
  16. Name string `json:"group_name"`
  17. Count int64 `json:"group_count"`
  18. Pendant []*usmdl.Pendant `json:"pendant_info"`
  19. }
  20. // PendantPHP php pendant result
  21. type PendantPHP struct {
  22. Pid int64 `json:"pid"`
  23. Name string `json:"name"`
  24. Image string `json:"image"`
  25. ImageModel string `json:"image_model"`
  26. }
  27. // GroupEntryPHP php vip pendant result
  28. type GroupEntryPHP struct {
  29. Pid int64 `json:"pid"`
  30. Money int64 `json:"money"`
  31. Name string `json:"name"`
  32. Image string `json:"image"`
  33. ImageModel string `json:"image_model"`
  34. }
  35. // GroupVipPHP php vip pendant result
  36. type GroupVipPHP struct {
  37. Pid int64 `json:"pid"`
  38. Money int64 `json:"money"`
  39. MoneyType int8 `json:"money_type"`
  40. Expire int64 `json:"display_expire"`
  41. Name string `json:"name"`
  42. Image string `json:"image"`
  43. ImageModel string `json:"image_model"`
  44. }
  45. // MyPHP struct.
  46. type MyPHP struct {
  47. Pid int64 `json:"pid"`
  48. Name string `json:"name"`
  49. MoneyType int8 `json:"money_type"`
  50. Image string `json:"image"`
  51. ImageModel string `json:"image_model"`
  52. Expire int64 `json:"expire"`
  53. IsActivated int8 `json:"is_activated"`
  54. IsOnline int8 `json:"is_online"`
  55. IsVip int8 `json:"is_vip"`
  56. }
  57. // MyHistoryPHP struct.
  58. type MyHistoryPHP struct {
  59. Pid int64 `json:"pid"`
  60. Image string `json:"image"`
  61. Name string `json:"name"`
  62. BuyTime int64 `json:"buy_time"`
  63. PayID string `json:"pay_id"`
  64. Cost string `json:"cost"`
  65. TimeLength int64 `json:"time_length"`
  66. }
  67. // FormatImgURL format images url
  68. func FormatImgURL(mid int64, img string) (url string) {
  69. if len(img) > 0 {
  70. return "http://i" + strconv.FormatInt(mid%3, 10) + ".hdslb.com" + img
  71. }
  72. return
  73. }