基线 SVN r240
SVN-Revision: r240
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
/***********************
|
||||
* 说明:基础审批分组数据界面模型(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"]);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user