using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using YBDevice.Entity; namespace YBDevice.NApi { public interface INoticeService { /// /// 增加通知日志 /// /// /// Task InsertNoticeLogAsync(YB_NoticeLog log); } }