using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml; using System.Data; namespace DocumentManagement.Model { public class PrintTemplate { #region Model private int _id; private int _parentid; private string _xmlfilename; private string _xmlfile; private string _xmlstatic; private int _templateorder; private List _children = new List(); private int _isvalid; private string _operatorno; private DateTime _operatordate; /// /// Id /// public int Id { set { _id = value; } get { return _id; } } /// /// 父节点Id /// public int ParentId { set { _parentid = value; } get { return _parentid; } } /// /// 文书名 /// public string XmlFileName { set { _xmlfilename = value; } get { return _xmlfilename; } } /// /// xml文档 /// public string XmlFile { set { _xmlfile = value; } get { return _xmlfile; } } /// /// 需要统计字段 /// public string XmlStatic { set { _xmlstatic = value; } get { return _xmlstatic; } } /// /// 排序 /// public int TemplateOrder { set { _templateorder = value; } get { return _templateorder; } } public List Children { get { return this._children; } set { this._children = value; } } /// /// 有效性 /// public int IsValid { set { _isvalid = value; } get { return _isvalid; } } /// /// 操作人工号 /// public string OperatorNo { set { _operatorno = value; } get { return _operatorno; } } /// /// 操作日期 /// public DateTime OperatorDate { set { _operatordate = value; } get { return _operatordate; } } #endregion Model } }