You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
3.4 KiB
86 lines
3.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Shentun.Peis.PlugIns.Extensions.ImportLisResults.AiDiKang
|
|
{
|
|
|
|
// 根节点对应的类
|
|
[XmlRoot("NewDataSet")]
|
|
public class GetReportItemListByCustomerBarocdeCGOut
|
|
{
|
|
[XmlElement("item")]
|
|
public List<GetReportItemListByCustomerBarocdeCGItem> Items { get; set; }
|
|
}
|
|
|
|
// 每个item对应的类
|
|
public class GetReportItemListByCustomerBarocdeCGItem
|
|
{
|
|
public string AdiconBarcode { get; set; }
|
|
public string PatientName { get; set; }
|
|
public string Sex { get; set; }
|
|
public string Age { get; set; }
|
|
public string AgeType { get; set; }
|
|
public string Department { get; set; }
|
|
public string BedNo { get; set; }
|
|
public string CollectionDate { get; set; }
|
|
public string ReceivedDate { get; set; }
|
|
public string LisDate { get; set; }
|
|
public string ReportDate { get; set; }
|
|
public string CustomerBarcode { get; set; }
|
|
public string Doctor { get; set; }
|
|
public string Technician { get; set; }
|
|
public string Checkedby { get; set; }
|
|
public string Remark { get; set; }
|
|
public string Instrument { get; set; }
|
|
public string SerialNumber { get; set; }
|
|
public string SampleType { get; set; }
|
|
public string ClinicalDiagnosis { get; set; }
|
|
public string ItemCode { get; set; }
|
|
public string ItemName_CN { get; set; }
|
|
public string ItemName_EN { get; set; }
|
|
public string Result { get; set; }
|
|
public string ResultHint { get; set; }
|
|
public string ResultHintJT { get; set; }
|
|
public string ResultReference { get; set; }
|
|
public string ResultUnit { get; set; }
|
|
public string TestMethod { get; set; }
|
|
public string TestMethod_EN { get; set; }
|
|
public string SampleChar { get; set; }
|
|
public string Result_Pathology { get; set; }
|
|
public string PatientNumber { get; set; }
|
|
public string PatientPhone { get; set; }
|
|
public string BirthDate { get; set; }
|
|
public string jyjs { get; set; }
|
|
public string Str1 { get; set; }
|
|
public string Str2 { get; set; }
|
|
public string Str3 { get; set; }
|
|
public string Str4 { get; set; }
|
|
public string Str5 { get; set; }
|
|
public string CustomRequestitemid { get; set; }
|
|
public string Customitemid { get; set; }
|
|
public string CriticalValueFlag { get; set; }
|
|
public string ItemPositiveFlag { get; set; }
|
|
public string CustomerPositiveFlag { get; set; }
|
|
public string Xmbh { get; set; }
|
|
public string Ybzt { get; set; }
|
|
public string Pdf { get; set; }
|
|
public string Sfzy { get; set; }
|
|
public string Bglxs { get; set; }
|
|
public string Zhmc { get; set; }
|
|
public string checkedbyid { get; set; }
|
|
public string technicianid { get; set; }
|
|
public string approverid { get; set; }
|
|
public string approver { get; set; }
|
|
public string meiNianClassify { get; set; }
|
|
public string sfzid { get; set; }
|
|
public string mutualRecognition { get; set; }
|
|
public string reportSumUp { get; set; }
|
|
public string Result_EN { get; set; }
|
|
public string ResultReference_EN { get; set; }
|
|
public string hasResultRechecked { get; set; }
|
|
}
|
|
}
|