feat: 初始化NewLife Studio项目,完成基础框架与数据管理模块
何炳宏 authored at 2026-05-26 12:09:09
362.00 B
NewLife.Studio
namespace NewLife.Studio.Core.DTOs;

/// <summary>查询结果</summary>
public class QueryResult
{
    public ColumnInfo[] Columns { get; set; } = [];
    public List<object?[]> Rows { get; set; } = [];
    public int RowCount { get; set; }
    public long ElapsedMs { get; set; }
    public bool Truncated { get; set; }
    public string? Error { get; set; }
}