/***********************************************************************
|
* Project: baifenBinfa
|
* ProjectName: 百分兵法管理系统
|
* Web: http://chuanyin.com
|
* Author:
|
* Email:
|
* CreateTime: 202403/02
|
* Description: 暂无
|
***********************************************************************/
|
|
|
using System.Collections.Generic;
|
using SqlSugar;
|
|
namespace CoreCms.Net.Model.ViewModels.Basics
|
{
|
/// <summary>
|
/// 代码生成器下拉数据列表实体
|
/// </summary>
|
public class DbTableInfoTree
|
{
|
public string Name { get; set; }
|
public string Label { get; set; }
|
public string Description { get; set; }
|
public DbObjectType DbObjectType { get; set; }
|
}
|
|
/// <summary>
|
/// 表名带字段
|
/// </summary>
|
public class DbTableInfoAndColumns
|
{
|
public string Name { get; set; }
|
public string Description { get; set; }
|
public List<DbColumnInfo> columns { get; set; } = null;
|
public DbObjectType DbObjectType { get; set; }
|
}
|
}
|