/*********************** * 说明:基础审批分组数据界面模型(p_systemaddgroup)表 * 创建人:龚宇超 * 创建日期:2018-01-25 * 修改人: * 修改日期: * 修改备注: * 版本:1.0.0.0 ***********************/ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; namespace Lskj.Model { public class AddGroupModel { public AddGroupModel() { } /// /// 控件左间距 /// public int ControlLeft; /// /// 控件上间距 /// public int ControlTop; /// /// 控件宽度 /// public int ControlWidth; /// /// 控件高度 /// public int ControlHeight; /// /// 组名 /// public string GroupName; public AddGroupModel(DataRow dr) { if (dr == null) return; GroupName = dr["GroupName"] + ""; ControlLeft = Convert.ToInt32(dr["controlLeft"]); ControlTop = Convert.ToInt32(dr["controlTop"]); ControlWidth = Convert.ToInt32(dr["controlWidth"]); ControlHeight = Convert.ToInt32(dr["controlHeight"]); } } }