using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using LeaRun.Application.Entity.SecondaryWaterSupply; using LeaRun.Util.WebControl; namespace LeaRun.Application.IService.SecondaryWaterSupply { public interface IDeviceService { /// /// 保存设备信息 /// /// /// bool SaveDevice(DeviceEntity device); /// /// 获取设备列表 /// /// 分页参数 /// 查询关键字 /// IEnumerable GetDeviceList(Pagination pagination, string keyWord); /// /// 更新设备信息 /// /// /// bool UpdateDevice(DeviceEntity device); /// /// 获取表设备信息 /// /// /// DeviceEntity GetDeviceById(string SecondaryWaterSupplyId); /// /// 删除设备信息 /// /// /// bool DeleteDevice(string SecondaryWaterSupplyId); } }