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

/// <summary>查询请求</summary>
public class QueryRequest
{
    public string Sql { get; set; } = "";
    public string ConnectionId { get; set; } = "";
    public int MaxRows { get; set; } = 1000;
    public int TimeoutSeconds { get; set; } = 30;
}