using Myshipping.Core.Entity; using System.Threading.Tasks; namespace Myshipping.Core; public interface IChatClient { Task ForceExist(string str); Task AppendNotice(SysNotice notice); /// /// 通知船期更新 /// /// Task NotifyVesselChange(); }