using Myshipping.Core.Entity; using System.Collections.Generic; using System.Threading.Tasks; namespace Myshipping.Core.Service; public interface ISysOnlineUserService { Task List(PageInputBase input); Task ForceExist(OnlineUser user); Task PushNotice(SysNotice notice, List userIds); }