蛋蛋星球-客户端
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

md_mq.go 684 B

12345678910111213141516171819202122232425
  1. package md
  2. const (
  3. EggJpushRecordQueueExchange = "egg.jpush"
  4. EggJpushRecordQueue = "jpush_record"
  5. EggAliyunSmsRecordQueueExchange = "egg.aliyun_sms"
  6. EggAliyunSmsRecordQueue = "aliyun_sms_record"
  7. )
  8. type JpushRecordFundData struct {
  9. Id string `json:"id"`
  10. UserId string `json:"user_id"`
  11. Title string `json:"title"`
  12. Content string `json:"content"`
  13. Platform string `json:"platform"`
  14. Target string `json:"target"`
  15. }
  16. type AliyunSmsRecordFundData struct {
  17. Id string `json:"id"`
  18. Phone string `json:"phone"`
  19. Title string `json:"title"`
  20. Content string `json:"content"`
  21. Code string `json:"code"`
  22. Extra string `json:"extra"`
  23. }