namespace Admin.NET.Application { /// /// 数据库表列 /// public class TableColumnOuput { /// /// 字段名 /// public string ColumnName { get; set; } /// /// 是否可为NULL 【Editby shaocx,2024-04-20】 /// public bool IsNullable { get; set; } /// /// 数据库中类型 /// public string DataType { get; set; } /// /// .NET字段类型 /// public string NetType { get; set; } /// /// 字段描述 /// public string ColumnComment { get; set; } /// /// 主外键 /// public string ColumnKey { get; set; } /// /// 页面列显示最小宽度 /// public string ShowTitleMinWidth { get; set; } } }