蛋蛋星球-客户端
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

33 satır
1.0 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. }