Files
Yi.Framework/Yi.Furion.Rbac/Yi.Framework.Module/OperLogManager/IOperationLogService.cs
2023-04-13 21:12:06 +08:00

13 lines
314 B
C#

using Yi.Framework.Infrastructure.Ddd.Services.Abstract;
namespace Yi.Framework.Module.OperLogManager
{
/// <summary>
/// OperationLog服务抽象
/// </summary>
public interface IOperationLogService : ICrudAppService<OperationLogGetListOutputDto, long, OperationLogGetListInputVo>
{
}
}