HuanMengAdmin/admin-server/MiaoYu.Shared.Admin/Models/LowCodes/TableChangeInput.cs
2025-11-08 15:00:24 +08:00

45 lines
1019 B
C#
Raw Permalink 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 MiaoYu.Shared.Admin.Models.LowCodes;
/// <summary>
/// 表级别数据变更输入参数
/// </summary>
public class TableChangeInput
{
/// <summary>
/// 表配置列表
/// </summary>
public List<TableChangeItem> Tables { get; set; } = new();
}
/// <summary>
/// 表配置项
/// </summary>
public class TableChangeItem
{
/// <summary>
/// 表名(必填)
/// </summary>
public string TableName { get; set; } = string.Empty;
/// <summary>
/// 数据库标识(必填)
/// </summary>
public string DataBase { get; set; } = string.Empty;
/// <summary>
/// 显示名称可选null 表示清空)
/// </summary>
public string? DisplayName { get; set; }
/// <summary>
/// 实体名称可选null 表示清空)
/// </summary>
public string? EntityName { get; set; }
/// <summary>
/// 备注可选null 表示清空)
/// </summary>
public string? Remark { get; set; }
}