|
|
@@ -10,7 +10,7 @@ const ( |
|
|
|
EggEnergyRoutKeyForStartExchangeGreenEnergyToTeam = "start_exchange_egg_energy_to_team" // 开始兑换团队蛋蛋能量 |
|
|
|
EggEnergyRoutKeyForAutoExchangeGreenEnergyToTeam = "auto_exchange_egg_energy_to_team" // 自动兑换团队蛋蛋能量 |
|
|
|
EggEnergyRoutKeyForEggEnergyFundData = "fund_data" // 资金汇入 |
|
|
|
|
|
|
|
EggEnergyRoutKeyForPlatformRevenueData = "platform_revenue_data" // 平台收入 |
|
|
|
) |
|
|
|
|
|
|
|
type EggEnergyStructForSignIn struct { |
|
|
@@ -46,3 +46,13 @@ type EggEnergyStructForAutoExchangeGreenEnergy struct { |
|
|
|
StartExchangeTime string `json:"start_exchange_time"` //发起兑换时间 |
|
|
|
EndExchangeTime string `json:"end_exchange_time"` //截止兑换时间 |
|
|
|
} |
|
|
|
|
|
|
|
type EggEnergyStructForPlatformRevenueData struct { |
|
|
|
ID int `json:"id"` |
|
|
|
Amount string `json:"amount"` // 资金汇入处理金额 |
|
|
|
} |
|
|
|
|
|
|
|
type EggEnergyStructForEggEnergyFundData struct { |
|
|
|
ID int `json:"id"` |
|
|
|
Amount string `json:"amount"` // 平台收入处理金额 |
|
|
|
} |