using System; using System.Collections; using System.Collections.Generic; using AIMSDAL; namespace AIMSModel { [Serializable] public partial class PrintDocument { private int? id; private int? patientId; private int? templateId; private string xmlFileName; private string xmlFile; private string xmlStatic; private bool? isValid; private string operatorNo; private DateTime? operatorDate; /// /// Id /// public int? Id { get{ return id; } set{ id=value; } } /// /// 患者ID /// public int? PatientId { get{ return patientId; } set{ patientId=value; } } /// /// 模板Id /// public int? TemplateId { get{ return templateId; } set{ templateId=value; } } /// /// 文档名称 /// public string XmlFileName { get{ return xmlFileName; } set{ xmlFileName=value; } } /// /// xml文档 /// public string XmlFile { get{ return xmlFile; } set{ xmlFile=value; } } /// /// 需要统计域 /// public string XmlStatic { get{ return xmlStatic; } set{ xmlStatic=value; } } /// /// 有效性 /// public bool? IsValid { get{ return isValid; } set{ isValid=value; } } /// /// 操作人工号 /// public string OperatorNo { get{ return operatorNo; } set{ operatorNo=value; } } /// /// 操作日期 /// public DateTime? OperatorDate { get{ return operatorDate; } set{ operatorDate=value; } } } }