nsnail c088492cfa
feat: 框架代码同步 (#173)
Co-authored-by: tk <fiyne1a@dingtalk.com>
2024-08-29 17:21:06 +08:00

17 lines
357 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.

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