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.

19 lines
585 B

  1. using JT809.Protocol.Extensions.JT1078.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace JT809.Protocol.Extensions.JT1078.MessageBody
  6. {
  7. /// <summary>
  8. /// 时效口令请求消息
  9. /// </summary>
  10. public class JT809_JT1078_0x1700_0x1702 : JT809SubBodies
  11. {
  12. public override ushort SubMsgId { get; } = JT809_JT1078_SubBusinessType.时效口令请求消息.ToUInt16Value();
  13. public override string Description => "时效口令请求消息";
  14. public override bool SkipSerialization { get; set; } = true;
  15. }
  16. }