using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { /// /// 分诊去向和各级人数统计 /// public class WhereaboutsAndCountModelDTO { /// /// 名称 /// public string Name { get; set; } /// /// 数量 /// public string Count { get; set; } } }