/*********************** * 说明:控件模型 * 创建人:龚宇超 * 创建日期: * 修改人: * 修改日期: * 修改备注: * 版本:1.0.0.0 ***********************/ using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Lskj.Model { public class ControlPropertyModel { /// /// 控件编号 /// public string FieldId; /// /// 控件名 /// public string FieldName; /// /// 控件用户名 /// public string UserName; /// /// 控件类别 /// public int FieldTypeId; /// /// 默认值 /// public string DefaultValue; /// /// 控件左边距 /// public int ControlLeft; /// /// 控件上边距 /// public int ControlTop; /// /// 控件宽 /// public int ControlWidth; /// /// 控件高 /// public int ControlHeight; /// /// 控件分组编号 /// public int GroupNo; /// /// tab次序 /// public int TabOrder; /// /// 列编号 /// public int ColumnNo; /// /// 控件序号 /// public int OrderId; } }