using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace JT808.Gateway.Abstractions { public interface IJT808MsgReplyProducer : IJT808PubSub, IDisposable { /// /// /// /// 设备终端号 /// 808 hex data ValueTask ProduceAsync(string terminalNo, byte[] data); } }