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

18 lines
402 B
C#
Raw Normal View History

2024-11-28 13:36:05 +08:00
using System.Collections.Generic;
2024-12-03 09:25:16 +08:00
namespace DOAN.CodeGenerator.Model
2024-11-28 13:36:05 +08:00
{
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; }
}
}