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.
|
- using JT808.Protocol;
- using JT808.Protocol.Enums;
- using JT808.Protocol.Extensions;
- using JT808.Protocol.MessageBody;
- using System;
- using System.Collections.Generic;
- using System.Text;
-
- namespace JT808.Gateway.Abstractions
- {
- /// <summary>
- /// 下行消息处理接口
- /// </summary>
- public interface IJT808DownMessageHandler
- {
- /// <summary>
- ///
- /// </summary>
- /// <param name="TerminalNo">sim</param>
- /// <param name="Data">808 hex</param>
- /// <returns>应答消息数据</returns>
- public byte[] Processor(string TerminalNo, byte[] Data);
- }
- }
|