蛋蛋星球-客户端
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

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