25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using JTNE.Protocol.Attributes;
- using JTNE.Protocol.Formatters.MessageBodyFormatters;
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace JTNE.Protocol.MessageBody
- {
- /// <summary>
- /// 车载终端心跳发送周期,有效值范围:1~240(表示1s~240s)
- /// </summary>
- [JTNEFormatter(typeof(JTNE_0x80Reply_0x09Formatter))]
- public class JTNE_0x80Reply_0x09: JTNE_0x80Reply_Body
- {
- public override byte ParamId { get; set; } = 0x09;
- /// <summary>
- /// 数据 长度
- /// </summary>
- public override byte ParamLength { get; set; } = 1;
- /// <summary>
- /// 车载终端心跳发送周期,有效值范围:1~240(表示1s~240s)
- /// </summary>
- public byte ParamValue { get; set; }
- }
- }
|