using Model; using Model.Dto.System; using SqlSugar; using System.Collections.Generic; using System.Threading.Tasks; namespace Service.Interface { /// /// 审计日志 服务接口 /// public interface IAuditLogService { /// 分页查询审计日志(可按操作人/操作类型/操作对象/时间段筛选) Task>> GetPagedAsync(int pageIndex, int pageSize, RefAsync total, string? keyword = null, string? operationType = null, string? operationTarget = null, DateTime? startTime = null, DateTime? endTime = null); } }