ab56a9bcf7
SVN-Revision: r240
55 lines
1.3 KiB
C#
55 lines
1.3 KiB
C#
/***********************
|
|
* 说明:基础审批分组数据界面模型(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()
|
|
{
|
|
}
|
|
/// <summary>
|
|
/// 控件左间距
|
|
/// </summary>
|
|
public int ControlLeft;
|
|
/// <summary>
|
|
/// 控件上间距
|
|
/// </summary>
|
|
public int ControlTop;
|
|
/// <summary>
|
|
/// 控件宽度
|
|
/// </summary>
|
|
public int ControlWidth;
|
|
/// <summary>
|
|
/// 控件高度
|
|
/// </summary>
|
|
public int ControlHeight;
|
|
/// <summary>
|
|
/// 组名
|
|
/// </summary>
|
|
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"]);
|
|
}
|
|
}
|
|
}
|