蛋蛋星球-客户端
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

24 satır
623 B

  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. }