using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class GenderAgeDistributionDTO { /// /// 总人数 /// public string SumCount { get; set; } /// /// 男 /// public string Male { get; set; } /// /// 女 /// public string Female { get; set; } /// /// 时间段内数据 /// public List list; } }