using JiShe.CollectBus.IotSystems.Protocols; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp; namespace JiShe.CollectBus.Protocol.Contracts.Interfaces { public interface IProtocolService { /// /// 通过仪器设备型号获取协议信息 /// /// /// /// /// Task FirstOrDefaultByDeviceAsync(string deviceCode, bool isSpecial = false); } }