You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
467 B
C#

//----------SysOperLog开始----------
using Admin.Core.Model.Sys;
using System.Threading.Tasks;
namespace Admin.Core.IService.ISys
{
/// <summary>
/// 操作日志记录IService
/// </summary>
public interface ISysOperLogService : IBaseServices<SysOperLog>
{
/// <summary>
/// 清空日志
/// </summary>
/// <returns></returns>
Task<bool> Clear();
}
}
//----------SysOperLog结束----------