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

47 rivejä
1.5 KiB

  1. package md
  2. type GetPriceCurveResp struct {
  3. XData []interface{} `json:"x_data"`
  4. YData []interface{} `json:"y_data"`
  5. }
  6. type PointsCenterGetBasicResp struct {
  7. AvailableEnergy string `json:"available_energy"` // 可用能量
  8. AvailableCash string `json:"available_cash"` // 可用现金
  9. }
  10. type ExchangeEnergyReq struct {
  11. EnergyAmount string `json:"energy_amount,required"` // 兑换能量数值
  12. }
  13. type GetContributionValueResp struct {
  14. ContributionValue string `json:"contribution_value"` // 贡献值
  15. Ratio string `json:"ratio"` // 兑换比率(x 分兑换 1 人民币)
  16. }
  17. type ContributionValueFlowNode struct {
  18. Title string `json:"title"` // 标题
  19. CreateAt string `json:"create_at"` // 完成时间
  20. Direction string `json:"direction"` // 方向: 1.收入 2.支出
  21. Amount string `json:"amount"` // 变更数量
  22. }
  23. type GetContributionValueFlowResp struct {
  24. List []ContributionValueFlowNode `json:"list"`
  25. Paginate Paginate `json:"paginate"`
  26. }
  27. type EggPointRecordNode struct {
  28. StartAt string `json:"start_at"` // 开始时间
  29. EndAt string `json:"end_at"` // 结束时间
  30. Year string `json:"year"` // 年份
  31. Week string `json:"week"` //周数
  32. Score string `json:"score"` // 分数
  33. }
  34. type GetEggPointRecordResp struct {
  35. NowScore string `json:"now_score"` // 当前分数
  36. List []EggPointRecordNode `json:"list"` // 分数明细列表
  37. Paginate Paginate `json:"paginate"`
  38. }