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(string alarmContent, bool resetStatus); /// /// 查看表的全部信息,按照状态为ture,时间最新来排序 /// /// WebResponseContent GetWebSocketInfo(); /// 将表中状态为true的改为false,根据登入者的部门id来 /// /// /// WebResponseContent BecomeTrue(string account); /// /// 上游检修道信息 /// WebResponseContent UpstreamInspectionRoad(UpstreamIDTO upstreamIDTO); } }