Files
kunshan-bzfm-mes-backend/ZR.CodeGenerator/Model/ImportCodeGenTableDto.cs

18 lines
400 B
C#
Raw Normal View History

2024-11-28 13:36:05 +08:00
using System.Collections.Generic;
namespace ZR.CodeGenerator.Model
{
public class ImportCodeGenTableDto
{
public int FrontTpl { get; set; }
public string DbName { get; set; }
public List<CodeGenTables> Tables { get; set; }
}
public class CodeGenTables
{
public string Name { get; set; }
public string Description { get; set; }
}
}