蛋蛋星球-客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

39 line
2.0 KiB

  1. package md
  2. type HomePageResp struct {
  3. IsSign bool `json:"is_sign"` // 是否开始签到
  4. SignEndTime string `json:"sign_end_time"` // 签到截止时间
  5. TotalEggEnergy string `json:"total_egg_energy"` // 总蛋蛋能量
  6. TotalActivePoints string `json:"total_active_points"` // 总蛋蛋积分
  7. InitialPrice string `json:"initial_price"` // 蛋蛋能量初始价格
  8. NowBasalRate string `json:"now_basal_rate"` // 当前基础速率/小时
  9. NowTeamRate string `json:"now_team_rate"` // 当前团队速率/小时
  10. NickName string `json:"nick_name"` // 用户名称
  11. LeaveTimer string `json:"leave_timer"` //可签到剩余时间 秒
  12. }
  13. type HomePageWatchAdRuleResp struct {
  14. RewardTotalNum string `json:"reward_total_num"` // 总可观看广告数量
  15. ResidueWatchAdNum int `json:"residue_watch_ad_num"` // 当前剩余可观看视频数
  16. WatchAdRewardActivePoints string `json:"watch_ad_reward_active_points"` // 观看广告视频奖励X个活跃积分
  17. NextWatchAdDate string `json:"next_watch_ad_date"` // 下次可观看广告时间,若为空允许观看视频
  18. NextWatchAdSecs int64 `json:"next_watch_ad_secs"` // 下次可观看广告时间,若为空允许观看视频
  19. EachRoundHour string `json:"each_round_hour"` // 每一轮X个小时
  20. RoundRemainingSecs int64 `json:"round_remaining_secs"` // 本轮剩余时间
  21. }
  22. type RealTimePriceResp struct {
  23. UserCount int64 `json:"user_count"` // 用户数
  24. NowPrice string `json:"now_price"` // 当前价格
  25. IsRises bool `json:"is_rises"` // 是否涨/跌价
  26. Rises string `json:"rises"` // 涨价幅度(百分比)
  27. }
  28. type IsCanSignInResp struct {
  29. IsCan bool `json:"is_can_sign_in"` // 能否签到
  30. }
  31. type IsCanGetRedPackageResp struct {
  32. IsCan bool `json:"is_can_get_red_package"` // 能否获取红包
  33. }