using DMS.Core.Models; namespace DMS.Core.Interfaces.Repositories; /// /// Nlog日志仓储接口,定义了对Nlog实体的特定数据访问方法。 /// 继承自通用仓储接口 IBaseRepository。 /// public interface INlogRepository : IBaseRepository { // 可以在此处添加 Nlog 特定的查询方法,例如: // Task> GetLogsByLevelAsync(string level); // Task> GetLogsByDateRangeAsync(DateTime startDate, DateTime endDate); // Task> SearchLogsAsync(string searchTerm); }