using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Shentun.Peis.PlugIns.Gem { public class ImportPacsResultInterfaceOut { public string code { get; set; } public string msg { get; set; } public List data { get; set; } } public class PacsImportResultInterfaceData { /// /// 姓名 /// public string patientName { get; set; } /// /// 科室名称 /// public string reportDeptName { get; set; } /// /// 放射DICOM影像浏览地址 /// public string webPacsURL { get; set; } /// /// 1阳性 0阴性 /// public int malignant { get; set; } /// /// 结论 /// public string examDiagnosis { get; set; } /// /// 描述 /// public string examDescript { get; set; } /// /// 建议 /// public string suggestion { get; set; } /// /// 报告医生 /// public string reportDoctorName { get; set; } /// /// 审核医生 /// public string reviewDoctorName { get; set; } /// /// 报告时间 /// public string reportDateTime { get; set; } /// /// 审核时间 /// public string reviewDateTime { get; set; } /// /// 图文报告浏览地址 /// public string reportUrl { get; set; } /// /// 超声打印图片列表,字符串base64数组 /// public List imageList { get; set; } } }