19 lines
368 B
C#
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; }
|
|
}
|
|
|