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