bnj.go 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package bnj
  2. import "go-common/app/service/main/archive/api"
  3. // RewardTypes .
  4. const (
  5. RewardTypePendant = "pendant"
  6. RewardTypeCoupon = "coupon"
  7. )
  8. // Reward .
  9. type Reward struct {
  10. Step int
  11. Condition int64
  12. RewardID string
  13. RewardType string
  14. Expire int64
  15. }
  16. // ResetMsg .
  17. type ResetMsg struct {
  18. Mid int64 `json:"mid"`
  19. Ts int64 `json:"ts"`
  20. }
  21. // PreviewInfo .
  22. type PreviewInfo struct {
  23. ActID int64 `json:"act_id"`
  24. SubID int64 `json:"sub_id"`
  25. Info []*Info `json:"info"`
  26. TimelinePic string `json:"timeline_pic"`
  27. H5TimelinePic string `json:"h5_timeline_pic"`
  28. GameCancel int64 `json:"game_cancel"`
  29. RewardStep []int64 `json:"reward_step"`
  30. HasRewardFirst int `json:"has_reward_first"`
  31. HasRewardSecond int `json:"has_reward_second"`
  32. }
  33. // Timeline .
  34. type Timeline struct {
  35. TimelinePic string `json:"timeline_pic"`
  36. H5TimelinePic string `json:"h5_timeline_pic"`
  37. GameCancel int64 `json:"game_cancel"`
  38. LikeCount int64 `json:"like_count"`
  39. }
  40. // Info .
  41. type Info struct {
  42. Nav string `json:"nav"`
  43. Pic string `json:"pic"`
  44. H5Pic string `json:"h5_pic"`
  45. Arc *api.Arc `json:"arc"`
  46. Detail string `json:"detail"`
  47. H5Detail string `json:"h5_detail"`
  48. }