蛋蛋星球-客户端
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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