using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WCS.Model; using WCS.Model.ApiModel.SingleLight; using WCS.Model.WebSocketModel; namespace WCS.BLL.Services.IService { /// /// 处理、查询报警使用的服务 /// public interface ISingleLightService { public Task> SingleLightControl(SingleLightControlRequest request); /// /// 按区域一键灭灯 /// /// /// public Task> TurnoffLightByArea(TurnoffLightByAreaRequest request); } }