50 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Windows.Forms; 
 | |
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using System.Drawing;
 | |
| 
 | |
| namespace AIMSModel
 | |
| {
 | |
|     [Serializable()]
 | |
|     public class UseDrugsReport
 | |
|     {
 | |
|         public int? Id { get; set; }
 | |
|         public int? PatientRecordId { get; set; }
 | |
|         public int? State { get; set; }
 | |
|         public int? 用药Id { get; set; }
 | |
|         public DateTime? 加药时间 { get; set; }
 | |
|         public string 使用日期 { get; set; }
 | |
|         public string 患者姓名 { get; set; }
 | |
|         public string 性别 { get; set; }
 | |
|         public string 年龄 { get; set; }
 | |
|         public string 住院号 { get; set; }
 | |
|         public string 病历号 { get; set; }
 | |
|         public string 身份证号码 { get; set; }
 | |
|         public string 疾病名称 { get; set; }
 | |
|         public string 药品名称 { get; set; }
 | |
|         public string 剩余药品弃取记录 { get; set; }
 | |
|         public string 批号 { get; set; }
 | |
|         public string 处方剂量 { get; set; }
 | |
|         public string 用量 { get; set; }
 | |
|         public string 残留剂量 { get; set; }
 | |
|         public string 残液处理方式 { get; set; }
 | |
|         public string 残液处理地点 { get; set; }
 | |
|         public string 处方医师 { get; set; }
 | |
|         public string 执行护士 { get; set; }
 | |
|         public string 复核人 { get; set; }
 | |
|         public string 核对护士 { get; set; }
 | |
|         public string 术间 { get; set; }
 | |
|         public string 医生签名 { get; set; }
 | |
|         public string 医生签名2 { get; set; }
 | |
|         public string 护士签名 { get; set; }
 | |
|         public Image 医生签名Img { get; set; }
 | |
|         public Image 医生签名2Img { get; set; }
 | |
|         public Image 护士签名Img { get; set; }
 | |
|         public string SpecUnit { get; set; }
 | |
|         public int? Num { get; set; }
 | |
|         public int? Enter { get; set; }
 | |
|         public string 镇痛泵使用量 { get; set; }
 | |
|         public string 镇痛泵余量 { get; set; }
 | |
|     }
 | |
| } |