using NET.AutoWebApi.Setting; using Yi.Framework.Ddd.Services; using Yi.Framework.Ddd.Dtos; using Yi.Framework.Core.Attributes; namespace Yi.Framework.OperLog { /// /// OperationLog服务实现 /// [AppService] public class OperationLogService : CrudAppService, IOperationLogService, IAutoApiService { public override Task> GetListAsync(OperationLogGetListInputVo input) { return base.GetListAsync(input); } } }