StableVersion4.3/HL_FristAidPlatform_DTO/Service/DispatchListModelDTO.cs

40 lines
910 B
C#
Raw Permalink 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.

namespace HL_FristAidPlatform_DTO
{
public class DispatchListModelDTO
{
/// <summary>
/// 院前急救人员表 人员GUID
/// </summary>
public string Str_GUID { get; set; }
/// <summary>
/// 院前急救人员出车统计表
/// </summary>
public FristAid_DrivingCensus DrivingCensus { get; set; }
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGUID { get; set; }
}
public class FristAid_DrivingCensus
{
/// <summary>
/// 人员总数
/// </summary>
public int PersonnelSum { get; set; }
/// <summary>
/// 患者数量
/// </summary>
public int PatientSum { get; set; }
/// <summary>
/// 创建人
/// </summary>
public long CreateUser { get; set; }
}
}