ab56a9bcf7
SVN-Revision: r240
140 lines
4.3 KiB
C#
140 lines
4.3 KiB
C#
using System;
|
|
using NewMyFormDesigner.Core;
|
|
namespace NewMyFormDesigner.Model
|
|
{
|
|
/// <summary>
|
|
/// 实体类P_systemControlLocation 。(属性说明自动提取数据库字段的描述信息)
|
|
/// </summary>
|
|
[Serializable]
|
|
public class P_systemControlLocation : BaseModel {
|
|
public P_systemControlLocation() {
|
|
TableName = "P_systemControlLocation";
|
|
PrimaryFields.Add("id");
|
|
IdentityName = "id";
|
|
AddField("id", FieldType.Int32, 4, "", false, true, default(int));
|
|
AddField("formKey", FieldType.VarChar, 200, "", false);
|
|
AddField("fieldId", FieldType.Int32, 4, "", true);
|
|
AddField("fieldName", FieldType.VarChar, 30, "", true);
|
|
AddField("userName", FieldType.VarChar, 50, "", true);
|
|
AddField("fieldTypeId", FieldType.Int32, 4, "", true);
|
|
AddField("defaultValue", FieldType.VarChar, 50, "", true);
|
|
AddField("controlLeft", FieldType.Int32, 4, "左", true);
|
|
AddField("controlTop", FieldType.Int32, 4, "上", true);
|
|
AddField("controlWidth", FieldType.Int32, 4, "宽", true);
|
|
AddField("controlHeight", FieldType.Int32, 4, "高", true);
|
|
AddField("GroupId", FieldType.Int32, 4, "分组Id", true);
|
|
AddField("tabOrder", FieldType.Int32, 4, "TAB次序", true);
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
//[Description("")]
|
|
public int GroupId {
|
|
set { SetValue("GroupId", value); }
|
|
get { return GetInt32("GroupId"); }
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
//[Description("")]
|
|
public int id {
|
|
set { SetValue("id", value); }
|
|
get { return GetInt32("id"); }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
//[Description("")]
|
|
public String formKey {
|
|
set { SetValue("formKey", value); }
|
|
get { return (String)GetValue("formKey"); }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
//[Description("")]
|
|
public int fieldId {
|
|
set { SetValue("fieldId", value); }
|
|
get { return GetInt32("fieldId"); }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
//[Description("")]
|
|
public string fieldName {
|
|
set { SetValue("fieldName", value); }
|
|
get { return GetString("fieldName"); }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
//[Description("")]
|
|
public string userName {
|
|
set { SetValue("userName", value); }
|
|
get { return GetString("userName"); }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
//[Description("")]
|
|
public int fieldTypeId {
|
|
set { SetValue("fieldTypeId", value); }
|
|
get { return GetInt32("fieldTypeId"); }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
//[Description("")]
|
|
public string defaultValue {
|
|
set { SetValue("defaultValue", value); }
|
|
get { return GetString("defaultValue"); }
|
|
}
|
|
/// <summary>
|
|
/// 左
|
|
/// </summary>
|
|
//[Description("左")]
|
|
public int controlLeft {
|
|
set { SetValue("controlLeft", value); }
|
|
get { return GetInt32("controlLeft"); }
|
|
}
|
|
/// <summary>
|
|
/// 上
|
|
/// </summary>
|
|
//[Description("上")]
|
|
public int controlTop {
|
|
set { SetValue("controlTop", value); }
|
|
get { return GetInt32("controlTop"); }
|
|
}
|
|
/// <summary>
|
|
/// 宽
|
|
/// </summary>
|
|
//[Description("宽")]
|
|
public int controlWidth {
|
|
set { SetValue("controlWidth", value); }
|
|
get { return GetInt32("controlWidth"); }
|
|
}
|
|
/// <summary>
|
|
/// 高
|
|
/// </summary>
|
|
//[Description("高")]
|
|
public int controlHeight {
|
|
set { SetValue("controlHeight", value); }
|
|
get { return GetInt32("controlHeight"); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// TAB次序
|
|
/// </summary>
|
|
//[Description("TAB次序")]
|
|
public int tabOrder
|
|
{
|
|
set { SetValue("tabOrder", value); }
|
|
get { return GetInt32("tabOrder"); }
|
|
}
|
|
|
|
}
|
|
}
|
|
|