namespace NetAdmin.Domain.Dto.Sys.Tool; /// /// 请求:执行SQL /// public record ExecuteSqlReq : DataAbstraction { /// /// SQL 语句 /// public string Sql { get; init; } /// /// 超时时间(秒) /// public int TimeoutSecs { get; init; } }