订单分佣规则
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

27 righe
973 B

  1. package md
  2. const OneCirclesExchange = "one.circles"
  3. const (
  4. OneCirclesRoutKeyForSignIn = "sign_in" // 签到
  5. OneCirclesRoutKeyForStarLevelDividend = "star_level_dividend" // 星级分红
  6. OneCirclesRoutKeyForAutoExchangeGreenEnergyToPerson = "auto_exchange_green_energy_to_person" // 自动兑换个人绿色能量
  7. OneCirclesRoutKeyForAutoExchangeGreenEnergyToTeam = "auto_exchange_green_energy_to_team" // 自动兑换团队绿色能量
  8. )
  9. type OneCirclesStructForSignIn struct {
  10. MasterId string `json:"master_id"`
  11. Uid int `json:"uid"`
  12. Id int64 `json:"id"`
  13. }
  14. type OneCirclesStructForAutoExchangeGreenEnergy struct {
  15. MasterId string `json:"master_id"`
  16. Uid int `json:"uid"`
  17. }
  18. type OneCirclesStructForStarLevelDividends struct {
  19. MasterId string `json:"master_id"`
  20. Uid int `json:"uid"`
  21. SignDividend float64 `json:"sign_dividend"`
  22. }