43 lines
1011 B
C#
43 lines
1011 B
C#
using HL_FristAidPlatform_Models;
|
|
using System;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// 保存病历
|
|
/// </summary>
|
|
public class SaveMedicalRecordModel
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public long CreatorID { get; set; }
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public T_Service_FirstAid_PatientInfo FPInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 患者基本信息
|
|
/// </summary>
|
|
public T_Service_Patient Patient { get; set; }
|
|
|
|
/// <summary>
|
|
/// 体格检查
|
|
/// </summary>
|
|
public T_Service_FirstAid_HealthCheckup Health { get; set; }
|
|
|
|
/// <summary>
|
|
/// 专科检查
|
|
/// </summary>
|
|
public T_Service_FirstAid_SpecialityCheckUp Speciality { get; set; }
|
|
|
|
/// <summary>
|
|
/// 辅助检查
|
|
/// </summary>
|
|
public T_Service_FirstAid_AssistantExamination AssistantExamination { get; set; }
|
|
|
|
}
|
|
}
|