using System; namespace WIP_Models { /// /// 实体类Model /// public class ColumnsModel { public ColumnsModel() { IsNullable = false;//默认是必填 } /// /// 中文名 /// public string ChinaName { get; set; } /// /// 属性名 /// public string PropertyName { get; set; } /// /// 数据类型 /// public Type DataType { get; set; } /// /// 是否可为null /// public bool IsNullable { get; set; } } }