StableVersion4.3/HL_FristAidPlatform_DTO/Service/AbnormalSchedulingDTO.cs

16 lines
392 B
C#

namespace HL_FristAidPlatform_DTO
{
public class AbnormalSchedulingDTO
{
/// <summary>
/// GUID
/// </summary>
public string GUID { get; set; }
/// <summary>
/// 异常原因 3途中待命 4站内待命 5中止任务 6暂停调用 7恢复调用
/// </summary>
public string AbnormalScheduling { get; set; }
}
}