Files
kunshan-bzfm-mes-backend/DOAN.CodeGenerator/Model/ImportCodeGenTableDto.cs
qianhao.xu 586d2e60dc init
2024-12-03 09:25:16 +08:00

18 lines
402 B
C#

using System.Collections.Generic;
namespace DOAN.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; }
}
}