Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

30 lines
644B

  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. /// <summary>
  9. /// kafka消息头
  10. /// </summary>
  11. public static class MqHeader
  12. {
  13. /// <summary>
  14. /// DataType
  15. /// </summary>
  16. public const string DataType = "DataType";
  17. /// <summary>
  18. /// OperType
  19. /// </summary>
  20. public const string OperType = "OperType";
  21. /// <summary>
  22. /// AlarmType
  23. /// </summary>
  24. public const string AlarmTypes = "AlarmType";
  25. }
  26. }