19 lines
405 B
C#
19 lines
405 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using YBDevice.Entity;
|
|
|
|
namespace YBDevice.NApi
|
|
{
|
|
public interface INoticeService
|
|
{
|
|
/// <summary>
|
|
/// 增加通知日志
|
|
/// </summary>
|
|
/// <param name="log"></param>
|
|
/// <returns></returns>
|
|
Task<int> InsertNoticeLogAsync(YB_NoticeLog log);
|
|
}
|
|
}
|