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 { /// /// 下行消息处理接口 /// public interface IJT808DownMessageHandler { /// /// /// /// sim /// 808 hex /// 应答消息数据 public byte[] Processor(string TerminalNo, byte[] Data); } }