HuanMengAdmin/admin-server/MiaoYu.Core.CodeGenerator/Models/GenDbTableDto.cs
2025-11-08 02:39:31 +08:00

19 lines
368 B
C#

namespace MiaoYu.Core.CodeGenerator.Models;
/// <summary>
/// 代码生成表 DTO
/// </summary>
public class GenDbTableDto : LowCodeTable
{
/// <summary>
/// 表字段信息
/// </summary>
public List<LowCodeTableInfo>? TableInfos { get; set; }
/// <summary>
/// 命名空间
/// </summary>
public string? Namespace { get; set; }
}