using Shentun.Peis.PlugIns.Extensions.ChargeRequests.YinHai.FeeBacks; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Shentun.Peis.PlugIns.Extensions.ImportLisResults.YinHai.ResultCalls { public class LisResultCallRequestDto { public CallBussinessRequestHeadDto head { get; set; } public LisResultCallRequestBodyDto body { get; set; } } public class LisResultCallRequestBodyDto { public LisResultCallRequestBodyDataDto data { get; set; } } public class LisResultCallRequestBodyDataDto { public LisResultCallRequestBodyDataRequestDetails request_details { get; set; } = new LisResultCallRequestBodyDataRequestDetails(); } public class LisResultCallRequestBodyDataRequestDetails { public List detail { get; set; } = new List(); } public class LisResultCallRequestBodyDataRequestDetail { public string hos_id { get; set; } public string request_no { get; set; } public string patient_type { get; set; } public string report_serial_no { get; set; } public string org_code { get; set; } public string system_source { get; set; } public string org_name { get; set; } public string patient_id { get; set; } public string visit_id { get; set; } public string order_id { get; set; } public string item_serial_no { get; set; } /// /// /// public string print_no { get; set; } /// /// /// public string examine_way_name { get; set; } /// /// /// public string examine_no { get; set; } /// /// /// public string examine_code { get; set; } /// /// /// public string examine_name { get; set; } /// /// /// public string examine_en_name { get; set; } /// /// /// public string examine_result_type { get; set; } /// /// /// public string examine_result { get; set; } /// /// /// public string computing_unit { get; set; } /// /// /// public string abnormal_tip { get; set; } /// /// /// public string reference_range { get; set; } /// /// /// public string remark { get; set; } /// /// /// public string batch_no { get; set; } /// /// /// public string report_url { get; set; } } }