namespace MiaoYu.Api.Admin.Models.Dtos.DevelopmentTool;
///
/// 代码生成表单模型
///
public class GenFormDto
{
///
/// 表名称
///
public string? TableName { get; set; }
///
/// 类型代码
///
public string? Type { get; set; }
///
/// 代码文本
///
public string? CodeText { get; set; }
}