StableVersion4.3/HL_FristAidPlatform_Help/Model/QueryBloodCollectionToResul...

37 lines
968 B
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 QueryBloodCollectionToResultAVETimeModel
{
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// 采血时间
/// </summary>
public string BloodCollectionTime { get; set; }
/// <summary>
/// 血常规报告时间
/// </summary>
public string BloodRoutineReportTime { get; set; }
/// <summary>
/// 采血至出报告时间间隔
/// </summary>
public string BloodCollectionToReportTime { get; set; }
/// <summary>
/// 创建时间 对应卒中接口文档人口学信息表ArchivesaLocalTime
/// </summary>
public DateTime? CreationDate { get; set; }
}
}