using JT808.DotNetty.Abstractions.Dtos; using System; using System.Collections.Generic; using System.Text; namespace JT808.DotNetty.Core.Interfaces { /// /// JT808 Udp会话服务 /// public interface IJT808UdpSessionService { /// /// 获取会话集合 /// /// JT808ResultDto> GetAll(); /// /// 通过设备终端号移除对应会话 /// /// /// JT808ResultDto RemoveByTerminalPhoneNo(string terminalPhoneNo); } }