using IMCS.CCS.Entitys; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace IMCS.CCS.Repository { public interface IEquipmentMonitorRepository { Task> GetList(); //查询详情 Task GetById(long id); //添加 Task Create(EquipmentMonitor device); //更新 Task Update(EquipmentMonitor device); } }