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

32 lines
902 B

  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. )
  11. type JpushRecordFundData struct {
  12. Id string `json:"id"`
  13. UserId string `json:"user_id"`
  14. Title string `json:"title"`
  15. Content string `json:"content"`
  16. Platform string `json:"platform"`
  17. Target string `json:"target"`
  18. }
  19. type AliyunSmsRecordFundData struct {
  20. Id string `json:"id"`
  21. Phone string `json:"phone"`
  22. Title string `json:"title"`
  23. Content string `json:"content"`
  24. Code string `json:"code"`
  25. Extra string `json:"extra"`
  26. }
  27. type AdvertisingWatch struct {
  28. Id string `json:"id"`
  29. }