using Highway.Assemble.common; using System.Collections.Generic; namespace Highway.Assemble.Sql { public interface ISql { /// /// 获取汇集信息 /// /// /// Collect GetCollectInfo(string collectid); /// /// 获取设备信息 /// /// /// List GetEquipList(string Id); /// /// 获取传感器信息 /// /// /// List GetSensorList(string deviceId); /// /// 获取MES设备信息 /// /// List GetMesEquipList(string huijiID); /// /// 汇集软件状态 /// /// 汇集编号 /// 设备状态 bool InsertCollectState(string ID, int state); List GetRFIDEquipList(); } }