You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 regels
745 B

  1. using JT809.Protocol.Enums;
  2. using JT809.Protocol.Extensions;
  3. namespace JT809.Protocol.MessageBody
  4. {
  5. /// <summary>
  6. /// 主链路车辆监管消息
  7. /// <para>链路类型:主链路</para>
  8. /// <para>消息方向:下级平台往上级平台</para>
  9. /// <para>业务数据类型标识:UP_CTRL_MSG</para>
  10. /// <para>描述:下级平台向上级平台发送车辆监管业务</para>
  11. /// </summary>
  12. public class JT809_0x1500: JT809ExchangeMessageBodies
  13. {
  14. public override ushort MsgId => JT809BusinessType.主链路车辆监管消息.ToUInt16Value();
  15. public override string Description => "主链路车辆监管消息";
  16. public override JT809_LinkType LinkType => JT809_LinkType.main;
  17. }
  18. }