namespace Admin.NET.Core { /// /// 数据库表列 /// public class TableColumn { /// /// 字段名 /// public string ColumnName { get; set; } /// /// 数据库中类型 /// public string DataType { get; set; } /// /// .NET字段类型 /// public string NetType { get; set; } /// /// 字段描述 /// public string ColumnComment { get; set; } /// /// 主外键 /// public string ColumnKey { get; set; } /// /// 是否必填 /// public bool IsRequired { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 字段类型 /// public string FieldType { get; set; } } }