StableVersion4.3/HL_FristAidPlatform_DTO/Service/AccidentInfoModelDTO.cs

31 lines
631 B
C#

using System.Collections.Generic;
namespace HL_FristAidPlatform_DTO
{
public class AccidentInfoModelDTO
{
public string GUID { get; set; }
public string NodeGUID { get; set; }
public string Name { get; set; }
public string ParentName { get; set; }
public int AccidentLevel { get; set; }
/// <summary>
///
/// </summary>
public string NodeName { get; set; }
/// <summary>
///
/// </summary>
public string Describe { get; set; }
public List<AccidentInfoModelDTO> childrenModel { get; set; }
}
}