33 lines
659 B
C#
33 lines
659 B
C#
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;
|
|
|
|
}
|
|
}
|