namespace NewLife.Studio.Core.DTOs;
/// <summary>查询历史记录</summary>
public class QueryHistoryEntry
{
public string Id { get; set; } = Guid.NewGuid().ToString("N");
public string Sql { get; set; } = "";
public string ConnectionName { get; set; } = "";
public DateTime ExecutedAt { get; set; } = DateTime.Now;
public long ElapsedMs { get; set; }
public int RowCount { get; set; }
}
|