namespace OpenAuth.Repository.QueryObj { /// /// 系统表列信息 /// public class SysTableColumn { /// /// 列名 /// public string ColumnName { get; set; } /// /// 列注释 /// public string Comment { get; set; } /// /// 类型,已转为.net类型 /// public string ColumnType { get; set; } /// /// 最大长度 /// public int? MaxLength { get; set; } /// /// 是否可空 /// public int? IsNull { get; set; } /// /// 是否显示 /// public int? IsDisplay { get; set; } /// /// 是否主键 /// public int? IsKey { get; set; } public string EntityType { get; set; } } }