Files
Yi.Framework/Yi.Framework.Net6/src/module/Yi.Framework.OperLog/IOperationLogService.cs
2023-02-22 16:49:24 +08:00

18 lines
401 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Ddd.Services.Abstract;
namespace Yi.Framework.OperLog
{
/// <summary>
/// OperationLog服务抽象
/// </summary>
public interface IOperationLogService : ICrudAppService<OperationLogGetListOutputDto, long, OperationLogGetListInputVo>
{
}
}