using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WinformDevFramework { public class ControlInfo { /// /// 表名 /// public string tableName { set; get; } /// /// 数据库字段名称 /// public string dataBaseFieldName { set; get; } /// /// 数据库字段类型 /// public string dataBaseFieldType { set; get; } /// /// 数据库字段说明 /// public string dataBaseFieldDDesr { set; get; } /// /// 控件类型 /// public string controlType { set; get; } /// /// 控件name /// public string controlName { set; get; } /// /// 控件类型 /// public string labelName { set; get; } /// /// 控件name /// public string labelText { set; get; } /// /// 是否自增字段 /// public bool isIdentity { set; get; } /// /// 是否搜索列 /// public bool isSearch { set; get; } /// /// 是否为空检验 /// public bool isCheck { set; get; } /// /// 是否可编辑 /// public bool isEdit { set; get; } = true; } }