StableVersion4.3/HL_FristAidPlatform_DTO/Service/ICUListJsonModelDTO.cs

17 lines
328 B
C#
Raw Permalink Normal View History

2024-03-11 09:47:34 +08:00
namespace HL_FristAidPlatform_DTO
{
public class ICUListJsonModelDTO
{
// <summary>
/// 患者GUID
/// </summary>
public string PatientGUID { get; set; }
/// <summary>
/// ICU信息数据
/// </summary>
public string ICUListJson { get; set; }
}
}