mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 08:10:51 +08:00
13 lines
314 B
C#
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>
|
|
{
|
|
|
|
}
|
|
}
|