namespace Admin.NET.Core.Service; /// /// 数据库表 /// public class TableOutput { /// /// 库定位器名 /// public string ConfigId { get; set; } /// /// 表名(字母形式的) /// public string TableName { get; set; } /// /// 实体名称 /// public string EntityName { get; set; } /// /// 创建时间 /// public string CreateTime { get; set; } /// /// 更新时间 /// public string UpdateTime { get; set; } /// /// 表名称描述(功能名) /// public string TableComment { get; set; } }