using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Service.MqProducer.Model { /// /// kafka消息头 /// public static class MqHeader { /// /// DataType /// public const string DataType = "DataType"; /// /// OperType /// public const string OperType = "OperType"; /// /// AlarmType /// public const string AlarmTypes = "AlarmType"; } }