income.go 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package http
  2. // RespIncomeAssetOverview .
  3. type RespIncomeAssetOverview struct {
  4. Total int64 `json:"total"`
  5. TotalBuyTimes int64 `json:"total_buy_times"`
  6. MonthNew int64 `json:"month_new"`
  7. DayNew int64 `json:"day_new"`
  8. }
  9. // ArgIncomeAssetList .
  10. type ArgIncomeAssetList struct {
  11. Ver string `form:"ver"`
  12. PS int64 `form:"ps"`
  13. PN int64 `form:"pn"`
  14. }
  15. // RespIncomeAssetList .
  16. type RespIncomeAssetList struct {
  17. List []*RespIncomeAsset `json:"list"`
  18. Page RespPage `json:"page"`
  19. }
  20. // RespIncomeAsset .
  21. type RespIncomeAsset struct {
  22. OID int64 `json:"oid"`
  23. OType string `json:"otype"`
  24. Title string `json:"title"`
  25. Currency string `json:"currency"`
  26. Price int64 `json:"price"`
  27. TotalBuyTimes int64 `json:"total_buy_times"`
  28. NewBuyTimes int64 `json:"new_buy_times"`
  29. TotalErrTimes int64 `json:"total_err_times"`
  30. NewErrTimes int64 `json:"new_err_times"`
  31. }
  32. // RespPage .
  33. type RespPage struct {
  34. Num int64 `json:"num"`
  35. Size int64 `json:"size"`
  36. Total int64 `json:"total"`
  37. }