673 lines
		
	
	
		
			20 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			673 lines
		
	
	
		
			20 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| 
 | |
| namespace DrawGraph
 | |
| {
 | |
|     [Serializable]
 | |
|     public partial class OperationRecordInfo
 | |
|     {
 | |
|         private int? id;
 | |
|         private int? patientId;
 | |
|         private int? applyId;
 | |
|         private int? operationRecordId;
 | |
|         private string operationCutId;
 | |
|         private string operationCut;
 | |
|         private string operationLevelId;
 | |
|         private string operationLevel;
 | |
|         private string operationSiteId;
 | |
|         private string operationSite;
 | |
|         private string puncturePosition;
 | |
|         private string punctureSite;
 | |
|         private string conduitDepth;
 | |
|         private string needleNumber;
 | |
|         private string needleDirection;
 | |
|         private string punctureRemark;
 | |
|         private string puncturePosition2;
 | |
|         private string punctureSite2;
 | |
|         private string conduitDepth2;
 | |
|         private string needleNumber2;
 | |
|         private string needleDirection2;
 | |
|         private string punctureRemark2;
 | |
|         private string intubateMode;
 | |
|         private string intubateType;
 | |
|         private string intubateNumber;
 | |
|         private string intubateDepth;
 | |
|         private string intubatePosition;
 | |
|         private string anaesthesiaMode;
 | |
|         private string intubatePath;
 | |
|         private string intubateOther;
 | |
|         private string neuroPlexusShallow;
 | |
|         private string neuroPlexusAround;
 | |
|         private string brachialPlexus;
 | |
|         private string venipunctureType;
 | |
|         private string venipunctureDeep;
 | |
|         private string venipunctureCenter;
 | |
|         private string experts;
 | |
|         private string ruleAnesthesiaDoctor;
 | |
|         private string ruleNurse;
 | |
|         private string anesthesiaPlane;
 | |
|         private string specialSituation;
 | |
|         private string anesthesiaEffect;
 | |
|         private string operationAnalgesiaMode;
 | |
|         private string whereabouts;
 | |
|         private string anesthesiaMethodFirstName;
 | |
|         private string anesthesiaMethodLastName;
 | |
|         private string anesthesiaMethodChangeReason;
 | |
|         private DateTime? anesthesiaMethodChangeTime;
 | |
|         private string anesthesiaSucceed;
 | |
|         private DateTime? anesthesiaSucceedTime;
 | |
|         private string tourNurseSucceed;
 | |
|         private DateTime? tourNurseSucceedTime;
 | |
|         private string instrumentNurseSucceed;
 | |
|         private DateTime? instrumentNurseSucceedTime;
 | |
|         private string infoRemark;
 | |
|         private string operatorId;
 | |
|         private DateTime? operatorTime;
 | |
|         private string stewardSober;
 | |
|         private string stewardBreathing;
 | |
|         private string stewardLimbActivity;
 | |
|         private string stewardNumber;
 | |
|         private string extend1;
 | |
|         private string extend2;
 | |
|         private string extend3;
 | |
|         private string extend4;
 | |
|         private string extend5;
 | |
| 
 | |
| 
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 标识
 | |
|         /// </summary>  
 | |
|         [NoCreatControlAttributs]
 | |
|         public int? Id
 | |
|         {
 | |
|             get { return id; }
 | |
|             set { id = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 患者Id
 | |
|         /// </summary>
 | |
|         [NoCreatControlAttributs]
 | |
|         public int? PatientId
 | |
|         {
 | |
|             get { return patientId; }
 | |
|             set { patientId = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 手术申请Id
 | |
|         /// </summary>
 | |
|         [NoCreatControlAttributs]
 | |
|         public int? ApplyId
 | |
|         {
 | |
|             get { return applyId; }
 | |
|             set { applyId = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 手术记录Id
 | |
|         /// </summary>
 | |
|         [NoCreatControlAttributs]
 | |
|         public int? OperationRecordId
 | |
|         {
 | |
|             get { return operationRecordId; }
 | |
|             set { operationRecordId = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 手术切口等级Id
 | |
|         /// </summary>
 | |
|         [NoCreatControlAttributs]
 | |
|         public string OperationCutId
 | |
|         {
 | |
|             get { return operationCutId; }
 | |
|             set { operationCutId = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 手术切口名称
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "手术切口名称")]
 | |
|         public string OperationCut
 | |
|         {
 | |
|             get { return operationCut; }
 | |
|             set { operationCut = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 手术分级Id
 | |
|         /// </summary>
 | |
|         [NoCreatControlAttributs] 
 | |
|         public string OperationLevelId
 | |
|         {
 | |
|             get { return operationLevelId; }
 | |
|             set { operationLevelId = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 手术分级名称
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "手术分级名称")]
 | |
|         public string OperationLevel
 | |
|         {
 | |
|             get { return operationLevel; }
 | |
|             set { operationLevel = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 手术体位Id
 | |
|         /// </summary>
 | |
|         [NoCreatControlAttributs]  
 | |
|         public string OperationSiteId
 | |
|         {
 | |
|             get { return operationSiteId; }
 | |
|             set { operationSiteId = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 手术体位名称
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "手术体位名称")]
 | |
|         public string OperationSite
 | |
|         {
 | |
|             get { return operationSite; }
 | |
|             set { operationSite = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺部位
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺部位")]
 | |
|         public string PuncturePosition
 | |
|         {
 | |
|             get { return puncturePosition; }
 | |
|             set { puncturePosition = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺体位
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺体位")]
 | |
|         public string PunctureSite
 | |
|         {
 | |
|             get { return punctureSite; }
 | |
|             set { punctureSite = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺深度
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺深度")]
 | |
|         public string ConduitDepth
 | |
|         {
 | |
|             get { return conduitDepth; }
 | |
|             set { conduitDepth = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺针号
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺针号")]
 | |
|         public string NeedleNumber
 | |
|         {
 | |
|             get { return needleNumber; }
 | |
|             set { needleNumber = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺方向
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺方向")]
 | |
|         public string NeedleDirection
 | |
|         {
 | |
|             get { return needleDirection; }
 | |
|             set { needleDirection = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺备注1
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺备注1")]
 | |
|         public string PunctureRemark
 | |
|         {
 | |
|             get { return punctureRemark; }
 | |
|             set { punctureRemark = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         ///  穿刺部位
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺部位")]
 | |
|         public string PuncturePosition2
 | |
|         {
 | |
|             get { return puncturePosition2; }
 | |
|             set { puncturePosition2 = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺体位
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺体位")]
 | |
|         public string PunctureSite2
 | |
|         {
 | |
|             get { return punctureSite2; }
 | |
|             set { punctureSite2 = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺深度
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺深度")]
 | |
|         public string ConduitDepth2
 | |
|         {
 | |
|             get { return conduitDepth2; }
 | |
|             set { conduitDepth2 = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺针号
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺针号")]
 | |
|         public string NeedleNumber2
 | |
|         {
 | |
|             get { return needleNumber2; }
 | |
|             set { needleNumber2 = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺方向
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺方向")]
 | |
|         public string NeedleDirection2
 | |
|         {
 | |
|             get { return needleDirection2; }
 | |
|             set { needleDirection2 = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 穿刺备注2
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "穿刺备注2")]
 | |
|         public string PunctureRemark2
 | |
|         {
 | |
|             get { return punctureRemark2; }
 | |
|             set { punctureRemark2 = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 插管模式
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "插管模式")]
 | |
|         public string IntubateMode
 | |
|         {
 | |
|             get { return intubateMode; }
 | |
|             set { intubateMode = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 插管类型
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "插管类型")]
 | |
|         public string IntubateType
 | |
|         {
 | |
|             get { return intubateType; }
 | |
|             set { intubateType = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 插管管号
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "插管管号")]
 | |
|         public string IntubateNumber
 | |
|         {
 | |
|             get { return intubateNumber; }
 | |
|             set { intubateNumber = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 插管深度
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "插管深度")]
 | |
|         public string IntubateDepth
 | |
|         {
 | |
|             get { return intubateDepth; }
 | |
|             set { intubateDepth = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 插管部位
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "插管部位")]
 | |
|         public string IntubatePosition
 | |
|         {
 | |
|             get { return intubatePosition; }
 | |
|             set { intubatePosition = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 插管模式
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "插管模式")]
 | |
|         public string AnaesthesiaMode
 | |
|         {
 | |
|             get { return anaesthesiaMode; }
 | |
|             set { anaesthesiaMode = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 插管路径
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "插管路径")]
 | |
|         public string IntubatePath
 | |
|         {
 | |
|             get { return intubatePath; }
 | |
|             set { intubatePath = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 插管其他
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "插管其他")]
 | |
|         public string IntubateOther
 | |
|         {
 | |
|             get { return intubateOther; }
 | |
|             set { intubateOther = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 神经阻滞
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "神经阻滞")]
 | |
|         public string NeuroPlexusShallow
 | |
|         {
 | |
|             get { return neuroPlexusShallow; }
 | |
|             set { neuroPlexusShallow = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 神经阻滞部位
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "神经阻滞部位")]
 | |
|         public string NeuroPlexusAround
 | |
|         {
 | |
|             get { return neuroPlexusAround; }
 | |
|             set { neuroPlexusAround = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 神经阻滞类型
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "神经阻滞类型")]
 | |
|         public string BrachialPlexus
 | |
|         {
 | |
|             get { return brachialPlexus; }
 | |
|             set { brachialPlexus = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 静脉穿刺类型
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "静脉穿刺类型")]
 | |
|         public string VenipunctureType
 | |
|         {
 | |
|             get { return venipunctureType; }
 | |
|             set { venipunctureType = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 深静脉穿刺
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "深静脉穿刺")]
 | |
|         public string VenipunctureDeep
 | |
|         {
 | |
|             get { return venipunctureDeep; }
 | |
|             set { venipunctureDeep = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 中心静脉穿刺
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "中心静脉穿刺")]
 | |
|         public string VenipunctureCenter
 | |
|         {
 | |
|             get { return venipunctureCenter; }
 | |
|             set { venipunctureCenter = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 外请专家
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "外请专家")]
 | |
|         public string Experts
 | |
|         {
 | |
|             get { return experts; }
 | |
|             set { experts = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 规培麻醉医生
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "规培麻醉医生")]
 | |
|         public string RuleAnesthesiaDoctor
 | |
|         {
 | |
|             get { return ruleAnesthesiaDoctor; }
 | |
|             set { ruleAnesthesiaDoctor = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 规培护士
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "规培护士")]
 | |
|         public string RuleNurse
 | |
|         {
 | |
|             get { return ruleNurse; }
 | |
|             set { ruleNurse = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 麻醉平面
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "麻醉平面")]
 | |
|         public string AnesthesiaPlane
 | |
|         {
 | |
|             get { return anesthesiaPlane; }
 | |
|             set { anesthesiaPlane = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 病人情况
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "病人情况")]
 | |
|         public string SpecialSituation
 | |
|         {
 | |
|             get { return specialSituation; }
 | |
|             set { specialSituation = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 麻醉效果
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "麻醉效果")]
 | |
|         public string AnesthesiaEffect
 | |
|         {
 | |
|             get { return anesthesiaEffect; }
 | |
|             set { anesthesiaEffect = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 麻醉镇痛类型
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "麻醉镇痛类型")]
 | |
|         public string OperationAnalgesiaMode
 | |
|         {
 | |
|             get { return operationAnalgesiaMode; }
 | |
|             set { operationAnalgesiaMode = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 去向
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "去向")]
 | |
|         public string Whereabouts
 | |
|         {
 | |
|             get { return whereabouts; }
 | |
|             set { whereabouts = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 麻醉变更前方式
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "麻醉变更前方式")]
 | |
|         public string AnesthesiaMethodFirstName
 | |
|         {
 | |
|             get { return anesthesiaMethodFirstName; }
 | |
|             set { anesthesiaMethodFirstName = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 麻醉变更后方式
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "麻醉变更后方式")]
 | |
|         public string AnesthesiaMethodLastName
 | |
|         {
 | |
|             get { return anesthesiaMethodLastName; }
 | |
|             set { anesthesiaMethodLastName = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 麻醉变更原因
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "麻醉变更原因")]
 | |
|         public string AnesthesiaMethodChangeReason
 | |
|         {
 | |
|             get { return anesthesiaMethodChangeReason; }
 | |
|             set { anesthesiaMethodChangeReason = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 麻醉变更时间
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "麻醉变更时间")]
 | |
|         public DateTime? AnesthesiaMethodChangeTime
 | |
|         {
 | |
|             get { return anesthesiaMethodChangeTime; }
 | |
|             set { anesthesiaMethodChangeTime = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 麻醉接台
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "麻醉接台")]
 | |
|         public string AnesthesiaSucceed
 | |
|         {
 | |
|             get { return anesthesiaSucceed; }
 | |
|             set { anesthesiaSucceed = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 麻醉接台时间
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "麻醉接台时间")]
 | |
|         public DateTime? AnesthesiaSucceedTime
 | |
|         {
 | |
|             get { return anesthesiaSucceedTime; }
 | |
|             set { anesthesiaSucceedTime = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 巡回护士接台
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "巡回护士接台")]
 | |
|         public string TourNurseSucceed
 | |
|         {
 | |
|             get { return tourNurseSucceed; }
 | |
|             set { tourNurseSucceed = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 巡回护士接台
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "巡回护士接台")]
 | |
|         public DateTime? TourNurseSucceedTime
 | |
|         {
 | |
|             get { return tourNurseSucceedTime; }
 | |
|             set { tourNurseSucceedTime = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 洗手护士接台
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "洗手护士接台")]
 | |
|         public string InstrumentNurseSucceed
 | |
|         {
 | |
|             get { return instrumentNurseSucceed; }
 | |
|             set { instrumentNurseSucceed = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 洗手护士接台时间
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "洗手护士接台时间")]
 | |
|         public DateTime? InstrumentNurseSucceedTime
 | |
|         {
 | |
|             get { return instrumentNurseSucceedTime; }
 | |
|             set { instrumentNurseSucceedTime = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 备注
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "备注")]
 | |
|         public string InfoRemark
 | |
|         {
 | |
|             get { return infoRemark; }
 | |
|             set { infoRemark = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 操作人
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "操作人")]
 | |
|         public string OperatorId
 | |
|         {
 | |
|             get { return operatorId; }
 | |
|             set { operatorId = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 操作时间
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "操作时间")]
 | |
|         public DateTime? OperatorTime
 | |
|         {
 | |
|             get { return operatorTime; }
 | |
|             set { operatorTime = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 清醒程度
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "清醒程度")]
 | |
|         public string StewardSober
 | |
|         {
 | |
|             get { return stewardSober; }
 | |
|             set { stewardSober = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 呼吸道通畅程度
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "呼吸道通畅程度")]
 | |
|         public string StewardBreathing
 | |
|         {
 | |
|             get { return stewardBreathing; }
 | |
|             set { stewardBreathing = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 肢体活动程度
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "肢体活动程度")]
 | |
|         public string StewardLimbActivity
 | |
|         {
 | |
|             get { return stewardLimbActivity; }
 | |
|             set { stewardLimbActivity = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// Steward评分
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "Steward评分")]
 | |
|         public string StewardNumber
 | |
|         {
 | |
|             get { return stewardNumber; }
 | |
|             set { stewardNumber = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 扩展1
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "扩展1")]
 | |
|         public string Extend1
 | |
|         {
 | |
|             get { return extend1; }
 | |
|             set { extend1 = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 扩展2
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "扩展2")]
 | |
|         public string Extend2
 | |
|         {
 | |
|             get { return extend2; }
 | |
|             set { extend2 = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 扩展3
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "扩展3")]
 | |
|         public string Extend3
 | |
|         {
 | |
|             get { return extend3; }
 | |
|             set { extend3 = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 扩展4
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "扩展4")]
 | |
|         public string Extend4
 | |
|         {
 | |
|             get { return extend4; }
 | |
|             set { extend4 = value; }
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 扩展5
 | |
|         /// </summary>
 | |
|         [ClassAttributs(Description = "扩展5")]
 | |
|         public string Extend5
 | |
|         {
 | |
|             get { return extend5; }
 | |
|             set { extend5 = value; }
 | |
|         }
 | |
|     }
 | |
| }
 |