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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GpsCardGatewayPosition.Service.MqProducer.Model
  7. {
  8. public static class MqTopic
  9. {
  10. /// <summary>
  11. /// 推送topic
  12. /// </summary>
  13. public const string Wx = "topic.push.wx"; //"topics.wxpush"; //微信
  14. public const string Third = "topic.push.third"; //"topics.thirdpush"; //第三方
  15. public const string Healthy = "topic.healthy.student"; // 健康同学
  16. /// <summary>
  17. /// 快速通道
  18. /// </summary>
  19. public const string Fast = "topic.push.fast"; //"topic.push.fast"; //
  20. public const string TestEnvDb = "topics.storage.test_env_db";
  21. public const string IotPosition = "topics.storage.iot.postion";
  22. ///// <summary>
  23. ///// 存储topic
  24. ///// </summary>
  25. //public const string Storage = "topics.storage";
  26. /// <summary>
  27. /// 电子围栏
  28. /// </summary>topics.fencepush
  29. public const string Fence = "topic.push.fence"; //"topics.fencepush";
  30. ///// <summary>
  31. ///// 测试topic
  32. ///// </summary>
  33. //public const string Test = "topics.test";
  34. /// <summary>
  35. /// 定位gps监测(非法区域检测)
  36. /// </summary>
  37. public const string LocationMonitor = "topic.location.monitor";
  38. }
  39. }