/*********************************************************************** * 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 { /// /// 代码生成器下拉数据列表实体 /// public class DbTableInfoTree { public string Name { get; set; } public string Label { get; set; } public string Description { get; set; } public DbObjectType DbObjectType { get; set; } } /// /// 表名带字段 /// public class DbTableInfoAndColumns { public string Name { get; set; } public string Description { get; set; } public List columns { get; set; } = null; public DbObjectType DbObjectType { get; set; } } }