StableVersion4.3/HL_FristAidPlatform_Help/Model/T_Service_PatientRescueMode...

67 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
public class T_Service_PatientRescueModel
{
/// <summary>
/// GUID
/// </summary>
public string GUID { get; set; }
/// <summary>
/// 创建时间 对应卒中接口文档人口学信息表ArchivesaLocalTime
/// </summary>
public DateTime? CreationDate { get; set; }
/// <summary>
/// 输血时间间隔
/// </summary>
public string BloodTransfusionInterval { get; set; }
/// <summary>
/// 人工气道时间间隔
/// </summary>
public string ArtificialAirwayInterval { get; set; }
/// <summary>
/// 紧急手术时间间隔
/// </summary>
public string EmergencyOperationInterval { get; set; }
/// <summary>
/// 全身快速CT时间间隔
/// </summary>
public string FastCTInterval { get; set; }
/// <summary>
/// 胸部X片时间间隔
/// </summary>
public string ChestXInterval { get; set; }
/// <summary>
/// 骨盆X片时间间隔
/// </summary>
public string PelvisInterval { get; set; }
/// <summary>
/// FAST时间间隔
/// </summary>
public string FASTInterval { get; set; }
/// <summary>
/// 其他X片时间间隔
/// </summary>
public string OtherXInterval { get; set; }
/// <summary>
/// 门急诊准备时间
/// </summary>
public string ReadinessTimeInterval { get; set; }
}
}