using SqlSugar;
using Volo.Abp;
using Volo.Abp.Application.Dtos;
using Yi.Framework.Ddd.Application;
using Yi.Framework.Rbac.Application.Contracts.Dtos.OperLog;
using Yi.Framework.Rbac.Application.Contracts.IServices;
using Yi.Framework.Rbac.Domain.Operlog;
using Yi.Framework.SqlSugarCore.Abstractions;
namespace Yi.Framework.Rbac.Application.Services
{
///
/// OperationLog服务实现
///
public class OperationLogService : YiCrudAppService,
IOperationLogService
{
private ISqlSugarRepository _repository;
public OperationLogService(ISqlSugarRepository repository) : base(repository)
{
_repository=repository;
}
public override async Task> GetListAsync(OperationLogGetListInputVo input)
{
RefAsync total = 0;
var entities = await _repository._DbQueryable.WhereIF(!string.IsNullOrEmpty(input.OperUser), x => x.OperUser.Contains(input.OperUser!))
.WhereIF(input.OperType is not null, x => x.OperType == input.OperType)
.WhereIF(input.StartTime is not null && input.EndTime is not null, x => x.CreationTime >= input.StartTime && x.CreationTime <= input.EndTime)
.ToPageListAsync(input.SkipCount, input.MaxResultCount, total);
return new PagedResultDto(total, await MapToGetListOutputDtosAsync(entities));
}
[RemoteService(false)]
public override Task UpdateAsync(Guid id, OperationLogGetListOutputDto input)
{
return base.UpdateAsync(id, input);
}
}
}