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

29 lines
566 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 MiaoYu.Core.CodeGenerator.Models;
/// <summary>
/// 代码生成表单模型
/// </summary>
public class GenFormDto
{
/// <summary>
/// 表名称
/// </summary>
public string? TableName { get; set; }
/// <summary>
/// 数据库标识Admin, MiaoYuChat, LiveForum
/// </summary>
public string? DataBase { get; set; }
/// <summary>
/// 类型代码
/// </summary>
public string? Type { get; set; }
/// <summary>
/// 代码文本
/// </summary>
public string? CodeText { get; set; }
}