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 IJT808UpMessageHandler
{
///
///
///
/// sim
/// 808 hex
public void Processor(string TerminalNo, byte[] Data);
}
}