27 lines
602 B
C#
27 lines
602 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// 人群分布
|
|
/// </summary>
|
|
public class PopulationDistributionModel
|
|
{
|
|
/// <summary>
|
|
/// 男性比例
|
|
/// </summary>
|
|
public string manProprtion { get; set; } = "0.00";
|
|
|
|
/// <summary>
|
|
/// 女性比例
|
|
/// </summary>
|
|
public string womanProprtion { get; set; } = "0.00";
|
|
|
|
public List<MassiveDataStatisticsModel> data { get; set; }
|
|
}
|
|
}
|