蛋蛋星球-客户端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

42 行
1.1 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. )
  14. type VideoReward struct {
  15. Uid string `json:"uid"`
  16. }
  17. type PlayletReward struct {
  18. Uid string `json:"uid"`
  19. }
  20. type JpushRecordFundData struct {
  21. Id string `json:"id"`
  22. UserId string `json:"user_id"`
  23. Title string `json:"title"`
  24. Content string `json:"content"`
  25. Platform string `json:"platform"`
  26. Target string `json:"target"`
  27. }
  28. type AliyunSmsRecordFundData struct {
  29. Id string `json:"id"`
  30. Phone string `json:"phone"`
  31. Title string `json:"title"`
  32. Content string `json:"content"`
  33. Code string `json:"code"`
  34. Extra string `json:"extra"`
  35. }
  36. type AdvertisingWatch struct {
  37. Id string `json:"id"`
  38. }