蛋蛋星球-客户端
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.

md_mq.go 1.3 KiB

3 viikkoa sitten
3 viikkoa sitten
3 viikkoa sitten
3 viikkoa sitten
3 viikkoa sitten
2 viikkoa sitten
3 viikkoa sitten
2 viikkoa sitten
1 viikko sitten
3 viikkoa sitten
3 viikkoa sitten
3 viikkoa sitten
3 viikkoa sitten
12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package md
  2. const (
  3. EggJpushRecordQueueExchange = "egg.jpush"
  4. EggAdvertisingQueueExchange = "egg.advertising"
  5. EggJpushRecordQueue = "jpush_record"
  6. EggAdvertisingSmash = "advertising_smash"
  7. EggAdvertisingSign = "advertising_sign"
  8. EggAliyunSmsRecordQueueExchange = "egg.aliyun_sms"
  9. EggAliyunSmsRecordQueue = "aliyun_sms_record"
  10. EggVideoPlayletExchange = "egg.video_playlet"
  11. EggVideoReward = "video"
  12. EggPlayletReward = "playlet"
  13. EggUserExchange = "egg.user"
  14. EggUserDelete = "user_delete"
  15. )
  16. type VideoReward struct {
  17. Uid string `json:"uid"`
  18. }
  19. type PlayletReward struct {
  20. Uid string `json:"uid"`
  21. }
  22. type CommUserId struct {
  23. Uid string `json:"uid"`
  24. ParentUid string `json:"parent_uid"`
  25. }
  26. type JpushRecordFundData struct {
  27. Id string `json:"id"`
  28. UserId string `json:"user_id"`
  29. Title string `json:"title"`
  30. Content string `json:"content"`
  31. Platform string `json:"platform"`
  32. Target string `json:"target"`
  33. }
  34. type AliyunSmsRecordFundData struct {
  35. Id string `json:"id"`
  36. Phone string `json:"phone"`
  37. Title string `json:"title"`
  38. Content string `json:"content"`
  39. Code string `json:"code"`
  40. Extra string `json:"extra"`
  41. }
  42. type AdvertisingWatch struct {
  43. Id string `json:"id"`
  44. }