订单分佣规则
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.

mq.go 798 B

123456789101112131415161718192021
  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. }