using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data;
namespace Lskj.Common
{
public class CreateControlModel2
{
///
/// 开始坐标
///
public int StartX { get; set; }
///
/// 结束坐标
///
public int StartY { get; set; }
///
/// 添加控件容器
///
public Control ctr { get; set; }
///
/// 添加控件容器
///
public Control ctr1 { get; set; }
///
/// 添加控件容器
///
public Control ctr2 { get; set; }
// ///
/// 添加控件容器
///
public Control ctr3 { get; set; }
///
/// 数据集
///
public DataTable dt { get; set; }
///
/// sql
///
public string sql { get; set; }
///
/// 登录Id
///
public string loginid { get; set; }
///
/// 容器存放控件数量
///
public int ctrNum { get; set; }
///
/// 登录用户名
///
public string loginname { get; set; }
///
/// 查看视图
///
public int isView { get; set; }
///
/// 操作类型
///
public bool isUpdate { get; set; }
///
/// 构造函数
///
public CreateControlModel2()
{
}
}
}