using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace GenerateCode_GEBrilliantFactory { /// /// 列对象 /// public class ColumnModel { /// /// 列名 /// public string ColumnName { get; set; } /// /// 数据类型 /// public string DataType { get; set; } /// /// 注释 /// public string Description { get; set; } /// /// 字段长度 /// public string DataLength { get; set; } /// /// 是否可为null /// public bool IsNullable { get; set; } /// /// 是否是主键 /// public bool IsPrimaryKey { get; set; } public int? MyPrecision { get; set; } public int Scale { get; set; } } }