using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEAWCS_Core; using WIDESEAWCS_Core.BaseRepository; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_DTO.Telescopic; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_ITaskInfoService { public interface IAlarmResetHsyServer : IService { IRepository Repository { get; } /// /// 添加 /// /// /// /// WebResponseContent AddAlarmHsy(int deptid, string alarmContent, bool resetStatus); /// /// 查看表的全部信息,按照状态为ture,时间最新来排序 /// /// WebResponseContent GetWebSocketInfo(); /// /// 将表中状态全部为true的改为false /// /// /// WebResponseContent BecomeTrue(); /// /// 上游检修道信息 /// WebResponseContent UpstreamInspectionRoad(UpstreamIDTO upstreamIDTO); /// /// 删除该轨道站的报警信号 /// /// WebResponseContent DeleteAllinform(); } }