You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.0 KiB
C#
91 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Web;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
/// <summary>
|
|
/// 左侧数节点信息
|
|
/// </summary>
|
|
public class JSTreeNodeEntity
|
|
{
|
|
#region 私有成员
|
|
private string _gid;
|
|
private string _value;
|
|
private string _text;
|
|
private bool _SetShowCheck;
|
|
private int _checkState;
|
|
private bool _isExpand;
|
|
private int _setChildNode;
|
|
private bool _setHasChild;
|
|
private string _classes;
|
|
private string _childnodes;
|
|
#endregion
|
|
|
|
public JSTreeNodeEntity()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 模板主键
|
|
/// </summary>
|
|
public string Gid
|
|
{
|
|
get { return _gid; }
|
|
set { _gid = value; }
|
|
}
|
|
public string Value
|
|
{
|
|
get { return _value; }
|
|
set { _value = value; }
|
|
}
|
|
public string Text
|
|
{
|
|
get { return _text; }
|
|
set { _text = value; }
|
|
}
|
|
|
|
public bool SetShowCheck
|
|
{
|
|
get { return _SetShowCheck; }
|
|
set { _SetShowCheck = value; }
|
|
}
|
|
|
|
public int CheckState
|
|
{
|
|
get { return _checkState; }
|
|
set { _checkState = value; }
|
|
}
|
|
|
|
public bool IsExpand
|
|
{
|
|
get { return _isExpand; }
|
|
set { _isExpand = value; }
|
|
}
|
|
|
|
public int SetChildNode
|
|
{
|
|
get { return _setChildNode; }
|
|
set { _setChildNode = value; }
|
|
}
|
|
|
|
public bool SetHasChild
|
|
{
|
|
get { return _setHasChild; }
|
|
set { _setHasChild = value; }
|
|
}
|
|
|
|
public string SetClasses
|
|
{
|
|
get { return _classes; }
|
|
set { _classes = value; }
|
|
}
|
|
|
|
public string ChildNodes
|
|
{
|
|
get { return _childnodes; }
|
|
set { _childnodes = value; }
|
|
}
|
|
|
|
}
|
|
} |