蛋蛋星球-客户端
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 

46 строки
1.3 KiB

  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. }
  25. type JpushRecordFundData struct {
  26. Id string `json:"id"`
  27. UserId string `json:"user_id"`
  28. Title string `json:"title"`
  29. Content string `json:"content"`
  30. Platform string `json:"platform"`
  31. Target string `json:"target"`
  32. }
  33. type AliyunSmsRecordFundData struct {
  34. Id string `json:"id"`
  35. Phone string `json:"phone"`
  36. Title string `json:"title"`
  37. Content string `json:"content"`
  38. Code string `json:"code"`
  39. Extra string `json:"extra"`
  40. }
  41. type AdvertisingWatch struct {
  42. Id string `json:"id"`
  43. }