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

89 lines
3.5 KiB

  1. package md
  2. type PointsCenterGetBasicResp struct {
  3. Energy string `json:"energy"` // 蛋蛋能量值
  4. EnergyValue string `json:"energy_amount"` // 能量价值
  5. WalletAmount string `json:"wallet_amount"` // 账户余额
  6. EggPoint string `json:"egg_point"` // 能量积分
  7. EggPointValue string `json:"egg_point_amount"` // 能量积分价值
  8. }
  9. type InitialDataResp struct {
  10. InitialPrice string `json:"initial_price"` // 初始价格
  11. TotalIssuanceAmount string `json:"total_issuance_amount"` // 总发行量
  12. TotalTechnologyTeam string `json:"total_technology_team"` // 技术团队
  13. TotalAngelInvestor string `json:"total_angel_investor"` // 天使投资人
  14. TotalOperateFund string `json:"total_operate_fund"` // 运营资金
  15. TotalEcologicalDevelopment string `json:"total_ecological_development"` // 生态建设
  16. }
  17. type DynamicDataResp struct {
  18. UserTotalHold string `json:"user_total_hold"` // 用户持有总量
  19. StarLevelDividends string `json:"star_level_dividends"` // 星级分红
  20. DevelopmentCommittee string `json:"development_committee"` // 发展委员会
  21. PublicWelfareAndCharity string `json:"public_welfare_and_charity"` // 公益基金
  22. }
  23. type GetPriceCurveResp struct {
  24. XData []interface{} `json:"x_data"`
  25. YData []interface{} `json:"y_data"`
  26. }
  27. type PointsExchangeGetBasicResp struct {
  28. AvailableEnergy string `json:"available_energy"` // 可用能量
  29. AvailableCash string `json:"available_cash"` // 可用现金
  30. }
  31. type ExchangeEnergyReq struct {
  32. EnergyAmount string `json:"energy_amount,required"` // 兑换能量数值
  33. }
  34. type GetContributionValueResp struct {
  35. ContributionValue string `json:"contribution_value"` // 贡献值
  36. Ratio string `json:"ratio"` // 兑换比率(x 分兑换 1 人民币)
  37. }
  38. type ContributionValueFlowNode struct {
  39. Title string `json:"title"` // 标题
  40. CreateAt string `json:"create_at"` // 完成时间
  41. Direction string `json:"direction"` // 方向: 1.收入 2.支出
  42. Amount string `json:"amount"` // 变更数量
  43. }
  44. type GetContributionValueFlowResp struct {
  45. List []ContributionValueFlowNode `json:"list"`
  46. Paginate Paginate `json:"paginate"`
  47. }
  48. type EggPointRecordNode struct {
  49. StartAt string `json:"start_at"` // 开始时间
  50. EndAt string `json:"end_at"` // 结束时间
  51. Year string `json:"year"` // 年份
  52. Week string `json:"week"` //周数
  53. Score string `json:"score"` // 分数
  54. }
  55. type GetEggPointRecordResp struct {
  56. NowScore string `json:"now_score"` // 当前分数
  57. List []EggPointRecordNode `json:"list"` // 分数明细列表
  58. Paginate Paginate `json:"paginate"`
  59. }
  60. type EggEnergyFlowNode struct {
  61. Id int64 `json:"id"`
  62. CoinName string `json:"coin_name"` // 虚拟币名称
  63. Direction int `json:"direction"` // 方向:1.收入 2.支出
  64. Title string `json:"title"` // 标题
  65. Amount string `json:"amount"` // 变更数量
  66. BeforeAmount string `json:"before_amount"` // 变更前数量
  67. AfterAmount string `json:"after_amount"` // 变更后数量
  68. SysFee string `json:"sys_fee"` // 手续费
  69. TransferType string `json:"transfer_type"` // 转账类型
  70. CreateAt string `json:"create_at"` // 创建时间
  71. }
  72. type GetEggEnergyFlowResp struct {
  73. List []EggEnergyFlowNode `json:"list"`
  74. Paginate Paginate `json:"paginate"`
  75. }