using System.Collections.Generic; namespace HL_FristAidPlatform_DTO { public class AccidentHandoverDTO { public string GUID { get; set; } /// /// 急救车GUID集合 /// public List Ambulances { get; set; } /// /// 人员GUID集合 /// public List Personnels { get; set; } } public class AmbulanceModel { public string GUID { get; set; } } public class PersonnelModel { public string GUID { get; set; } } }