StableVersion4.3/HL_FristAidPlatform_DTO/Service/GenderAgeDistributionDTO.cs

33 lines
659 B
C#
Raw Permalink Normal View History

2024-03-11 09:47:34 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class GenderAgeDistributionDTO
{
/// <summary>
/// 总人数
/// </summary>
public string SumCount { get; set; }
/// <summary>
/// 男
/// </summary>
public string Male { get; set; }
/// <summary>
/// 女
/// </summary>
public string Female { get; set; }
/// <summary>
/// 时间段内数据
/// </summary>
public List<KeyValueTwoParameters> list;
}
}