23 lines
443 B
C#
23 lines
443 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class ICUListJsonModel
|
|
{
|
|
// <summary>
|
|
/// 患者GUID
|
|
/// </summary>
|
|
public string PatientGUID { get; set; }
|
|
|
|
/// <summary>
|
|
/// ICU信息数据
|
|
/// </summary>
|
|
public string ICUListJson { get; set; }
|
|
|
|
}
|
|
}
|