StableVersion4.3/HL_FristAidPlatform_DTO/Service/AlarmTaskUpdateTimeDTO.cs

26 lines
681 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 AlarmTaskUpdateTimeDTO
{
/// <summary>
///
/// </summary>
public string GUID { get; set; }
/// <summary>
/// 类型:-1 接受指令 0 开往现场 1 到达现场 2 病人上车 3 开始转送; 4 转送完成 5 返回医院 6 到达医院
/// </summary>
public int Type { get; set; }
/// <summary>
/// 转送地址
/// </summary>
public string ToAddress { get; set; }
/// <summary>
/// 更新后的时间
/// </summary>
public string UpdateTime { get; set; }
}
}