蛋蛋星球 后台端
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.
 
 
 
 
 

146 lines
7.7 KiB

  1. package md
  2. import (
  3. "code.fnuoos.com/EggPlanet/egg_system_rules.git/rule/egg_energy/md"
  4. )
  5. const (
  6. ExecutionInterval = 10 // 结算执行间隔
  7. )
  8. type VirtualCoin struct {
  9. Id int `json:"id" `
  10. Name string `json:"name" ` // 名称
  11. ExchangeRatio string `json:"exchange_ratio" example:"兑换比例(与金额)"` // 兑换比例(与金额)
  12. IsUse int `json:"is_use" ` // 是否开启: 0否 1是
  13. CreateAt string `json:"create_at" `
  14. UpdateAt string `json:"update_at" `
  15. }
  16. // BasicSetting 基础设置
  17. type BasicSetting struct {
  18. IsOpen int `json:"is_open" ` // 是否开启(1:开启 0:关闭)
  19. PersonEggEnergyCoinId int `json:"person_egg_energy_coin_id" ` // 个人蛋蛋能量对应虚拟币 id
  20. TeamEggEnergyCoinId int `json:"team_egg_energy_coin_id" ` // 团队蛋蛋能量对应虚拟币 id
  21. PersonEggPointsCoinId int `json:"person_egg_points_coin_id" ` // 个人蛋蛋积分对应虚拟币 id
  22. TeamEggPointsCoinId int `json:"team_egg_points_coin_id" ` // 团队蛋蛋积分对应虚拟币 id
  23. DirectPushReward md.TeamRewardSettingStruct `json:"direct_push_reward"` // 直推奖励
  24. }
  25. // VideoRewardSetting 视频奖励
  26. type VideoRewardSetting struct {
  27. VideoRewardIsOpen int `json:"video_reward_is_open" ` // 视频奖励是否开启(1:开启 0:关闭)
  28. VideoRewardSystem md.VideoRewardSystemStruct `json:"video_reward_system"` // 视频奖励机制
  29. }
  30. // DataSetting 数据设置
  31. type DataSetting struct {
  32. TotalIssuanceAmount string `json:"total_issuance_amount" example:"总发行量"` // 总发行量
  33. TotalTechnologyTeam string `json:"total_technology_team" example:"技术团队"` // 技术团队
  34. TotalAngelInvestor string `json:"total_angel_investor" example:"天使投资人"` // 天使投资人
  35. TotalOperateFund string `json:"total_operate_fund" example:"运营资金"` // 运营资金
  36. TotalEcologicalDevelopment string `json:"total_ecological_development" example:"当前价格"` // 生态建设
  37. // TotalTeamDividends string`json:"total_team_dividends" example:"团队分红"` // 团队分红
  38. TotalUserForPerson string `json:"total_user_for_person" example:"个人区域"` // 个人区域
  39. TotalUserForTeam string `json:"total_user_for_team" example:"团队区域"` // 团队区域
  40. }
  41. type GetEggEnergyBasicResp struct {
  42. BasicSetting BasicSetting `json:"basic_setting"` // 基础设置
  43. VideoRewardSetting VideoRewardSetting `json:"video_reward_setting"` // 视频奖励
  44. DataSetting DataSetting `json:"data_setting"` // 数据设置
  45. DestructionSetting md.DestructionSettingStruct `json:"destruction_setting"` // 销毁设置
  46. PriceSetting md.PriceSettingStruct `json:"price_setting"` // 价格设置
  47. ExchangeRules md.ExchangeRulesStruct `json:"exchange_rules"` // 兑换规则
  48. RewardSystem md.RewardSystemStruct `json:"reward_system"` // 圈层奖励
  49. NewUserIncentiveRules md.NewUserRewardRules `json:"new_user_incentive_rules"` // 新用户奖励规则
  50. SystemID int `json:"system_id"` // 该设置系统 ID
  51. }
  52. type UpdateEggEnergyBasicReq struct {
  53. SystemID int `json:"system_id,required"` // 该设置系统 ID
  54. BasicSetting BasicSetting `json:"basic_setting"` // 基础设置
  55. VideoRewardSetting VideoRewardSetting `json:"video_reward_setting"` // 视频奖励
  56. DataSetting DataSetting `json:"data_setting"` // 数据设置
  57. DestructionSetting md.DestructionSettingStruct `json:"destruction_setting"` // 销毁设置
  58. PriceSetting md.PriceSettingStruct `json:"price_setting"` // 价格设置
  59. ExchangeRules md.ExchangeRulesStruct `json:"exchange_rules"` // 兑换规则
  60. RewardSystem md.RewardSystemStruct `json:"reward_system"` // 圈层奖励
  61. NewUserIncentiveRules md.NewUserRewardRules `json:"new_user_incentive_rules"` // 新用户奖励规则 // 新用户奖励规则
  62. }
  63. type GetEggCoreDataListResp struct {
  64. PlanetTotalValue string `json:"planet_total_value" example:"星球价值"` // 星球价值
  65. NowPrice string `json:"now_price" example:"当前价格"` // 当前价格
  66. NowEnergyTotalNums string `json:"now_energy_total_nums" example:"现行总量"` // 现行总量
  67. UserHoldTotalNums map[string]string `json:"user_hold_total_nums"` // 用户持有总量
  68. }
  69. type GetPriceCurveResp struct {
  70. XData []interface{} `json:"x_data"`
  71. YData []interface{} `json:"y_data"`
  72. }
  73. type GetFundDataListReq struct {
  74. Kind int `json:"kind"` // 数据类型
  75. StartAt string `json:"start_at" example:"开始时间"`
  76. EndAt string `json:"end_at" example:"结束时间"`
  77. Page int `json:"page,required"` // 页数
  78. Limit int `json:"limit,required" ` // 每页大小
  79. }
  80. type FundDataNode struct {
  81. SystemID int `json:"system_id"`
  82. Kind int `json:"kind" ` //种类(1:公司补贴 2:资方投资 3:市场期望)
  83. TotalAmount string `json:"total_amount" ` // 金额
  84. BalanceAmount string `json:"balance_amount" ` // 余额
  85. Hours int `json:"hours" ` // 时长
  86. BalanceTimes int `json:"balance_times" ` // 剩余执行次数
  87. Memo string `json:"memo" ` // 备注
  88. CreateAt string `json:"create_at" ` // 创建时间
  89. }
  90. type GetFundDataListResp struct {
  91. KindList []map[string]interface{} `json:"kind_list"` // 类型列表
  92. Paginate Paginate `json:"paginate"` // 分页数据
  93. List []FundDataNode `json:"list"` // 数据列表
  94. }
  95. type GetFundDataRecordListReq struct {
  96. SystemID int `json:"system_id,required"` // 数据在系统中的 ID
  97. Page int `json:"page,required"` // 页数
  98. Limit int `json:"limit,required"` // 页面大小
  99. }
  100. type FundDataRecordNode struct {
  101. TotalAmount string `json:"total_amount" ` // 金额
  102. BalanceAmount string `json:"balance_amount" ` // 余额
  103. BalanceTimes int `json:"balance_times" ` //剩余执行次数
  104. BeforePrice string `json:"before_price" ` // 执行前-价格
  105. AfterPrice string `json:"after_price" ` // 执行后-价格
  106. BeforePlanetTotalValue string `json:"before_planet_total_value" ` // 执行前-星球价值
  107. AfterPlanetTotalValue string `json:"after_planet_total_value" ` // 执行后-星球价值
  108. CreateAt string `json:"create_at" `
  109. }
  110. type GetFundDataRecordListResp struct {
  111. List []FundDataRecordNode `json:"list"`
  112. Paginate Paginate `json:"paginate"`
  113. }
  114. type GetFundDataRecordDataListReq struct {
  115. Kind int `json:"kind"` //种类(1:公司补贴 2:资方投资 3:市场期望)
  116. StartAt string `json:"start_at"`
  117. EndAt string `json:"end_at"`
  118. Page int `json:"page"`
  119. Limit int `json:"limit"`
  120. }
  121. type AddFundDataReq struct {
  122. Kind int `json:"kind,required"` // 种类(1:公司补贴 2:资方投资 3:市场期望)
  123. TotalAmount string `json:"total_amount,required"` // 金额
  124. Hours int `json:"hours,required"` // 时长(小时)
  125. Memo string `json:"memo" example:"备注"`
  126. Frequency int `json:"frequency"` // 频率(分钟)
  127. }