19 lines
411 B
C#
19 lines
411 B
C#
using HL_FristAidPlatform_Models;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class AssistantExaminationModel
|
|
{
|
|
|
|
/// <summary>
|
|
/// 患者GUID
|
|
/// </summary>
|
|
public string PatientGUID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 辅助检查
|
|
/// </summary>
|
|
public T_Service_FirstAid_AssistantExamination AssistantExamination { get; set; }
|
|
}
|
|
}
|