蛋蛋星球-客户端
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.
 
 
 
 
 
 

35 lines
1.6 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. }
  12. type HomePageWatchAdRuleResp struct {
  13. ResidueWatchAdNum int `json:"residue_watch_ad_num"` // 当前剩余可观看视频数
  14. WatchAdRewardActivePoints string `json:"watch_ad_reward_active_points"` // 观看广告视频奖励X个活跃积分
  15. NextWatchAdDate string `json:"next_watch_ad_date"` // 下次可观看广告时间,若为空允许观看视频
  16. EachRoundHour string `json:"each_round_hour"` // 每一轮X个小时
  17. }
  18. type RealTimePriceResp struct {
  19. UserCount int64 `json:"user_count"` // 用户数
  20. NowPrice string `json:"now_price"` // 当前价格
  21. IsRises bool `json:"is_rises"` // 是否涨/跌价
  22. Rises string `json:"rises"` // 涨价幅度(百分比)
  23. }
  24. type IsCanSignInResp struct {
  25. IsCan bool `json:"is_can_sign_in"` // 能否签到
  26. }
  27. type IsCanGetRedPackageResp struct {
  28. IsCan bool `json:"is_can_get_red_package"` // 能否获取红包
  29. }