111 lines
2.5 KiB
C#
111 lines
2.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace DataDictionary.Model
|
|
{
|
|
public class BasicDictionary
|
|
{
|
|
#region Model
|
|
private int _id;
|
|
private string _name;
|
|
private int _parentid;
|
|
private string _helpcode;
|
|
private int _order;
|
|
private int _isvalid;
|
|
private string _operatorno;
|
|
private string _operatorname;
|
|
private DateTime _operatedate;
|
|
private string _remark;
|
|
private List<BasicDictionary> _children = new List<BasicDictionary>();
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int Id
|
|
{
|
|
set { _id = value; }
|
|
get { return _id; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Name
|
|
{
|
|
set { _name = value; }
|
|
get { return _name; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int ParentId
|
|
{
|
|
set { _parentid = value; }
|
|
get { return _parentid; }
|
|
}
|
|
public List<BasicDictionary> Children
|
|
{
|
|
get { return this._children; }
|
|
set { this._children = value; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string HelpCode
|
|
{
|
|
set { _helpcode = value; }
|
|
get { return _helpcode; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int Order
|
|
{
|
|
set { _order = value; }
|
|
get { return _order; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public int IsValid
|
|
{
|
|
set { _isvalid = value; }
|
|
get { return _isvalid; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string OperatorNo
|
|
{
|
|
set { _operatorno = value; }
|
|
get { return _operatorno; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string OperatorName
|
|
{
|
|
set { _operatorname = value; }
|
|
get { return _operatorname; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public DateTime OperateDate
|
|
{
|
|
set { _operatedate = value; }
|
|
get { return _operatedate; }
|
|
}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string Remark
|
|
{
|
|
set { _remark = value; }
|
|
get { return _remark; }
|
|
}
|
|
#endregion Model
|
|
|
|
}
|
|
}
|