using System;
using System.Collections.Generic;
using System.Web;
namespace DSWeb.Models
{
///
/// 左侧数节点信息
///
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()
{
}
///
/// 模板主键
///
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; }
}
}
}