Files
DMS/DMS.Core/Interfaces/Repositories/INlogRepository.cs

15 lines
571 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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