|
|
@@ -10,9 +10,9 @@ const ( |
|
|
|
|
|
|
|
type VirtualCoin struct { |
|
|
|
Id int `json:"id" ` |
|
|
|
Name string `json:"name" ` // 名称 |
|
|
|
Name string `json:"name" ` // 名称 |
|
|
|
ExchangeRatio string `json:"exchange_ratio" example:"兑换比例(与金额)"` // 兑换比例(与金额) |
|
|
|
IsUse int `json:"is_use" ` // 是否开启: 0否 1是 |
|
|
|
IsUse int `json:"is_use" ` // 是否开启: 0否 1是 |
|
|
|
CreateAt string `json:"create_at" ` |
|
|
|
UpdateAt string `json:"update_at" ` |
|
|
|
} |
|
|
@@ -37,7 +37,7 @@ type VideoRewardSetting struct { |
|
|
|
type DataSetting struct { |
|
|
|
TotalIssuanceAmount string `json:"total_issuance_amount" example:"总发行量"` // 总发行量 |
|
|
|
TotalTechnologyTeam string `json:"total_technology_team" example:"技术团队"` // 技术团队 |
|
|
|
TotalAngelInvestor string `json:"total_angel_investor" example:"天使投资人"` // 天使投资人 |
|
|
|
TotalAngelInvestor string `json:"total_angel_investor" example:"天使投资人"` // 天使投资人 |
|
|
|
TotalOperateFund string `json:"total_operate_fund" example:"运营资金"` // 运营资金 |
|
|
|
TotalEcologicalDevelopment string `json:"total_ecological_development" example:"当前价格"` // 生态建设 |
|
|
|
TotalTeamDividends string `json:"total_team_dividends" example:"团队分红"` // 团队分红 |
|
|
@@ -70,6 +70,7 @@ type UpdateEggEnergyBasicReq struct { |
|
|
|
} |
|
|
|
|
|
|
|
type VipEquitySettingNode struct { |
|
|
|
VipID string `json:"vip_id"` // 会员等级ID |
|
|
|
VipLevelName string `json:"vip_level_name"` // 会员等级名称 |
|
|
|
ExchangeAccountBalanceFee string `json:"exchange_account_balance_fee"` //兑换余额手续费 |
|
|
|
DividendRatio string `json:"dividend_ratio"` //分红比例 |
|
|
@@ -100,7 +101,7 @@ type GetEggCoreDataListResp struct { |
|
|
|
PlanetTotalValue string `json:"planet_total_value" example:"星球价值"` // 星球价值 |
|
|
|
NowPrice string `json:"now_price" example:"当前价格"` // 当前价格 |
|
|
|
NowEnergyTotalNums string `json:"now_energy_total_nums" example:"现行总量"` // 现行总量 |
|
|
|
UserHoldTotalNums map[string]string `json:"user_hold_total_nums"` // 用户持有总量 |
|
|
|
UserHoldTotalNums map[string]string `json:"user_hold_total_nums"` // 用户持有总量 |
|
|
|
} |
|
|
|
|
|
|
|
type GetPriceCurveResp struct { |
|
|
|