StableVersion4.3/HL_FristAidPlatform_Help/Model/CheatPainFirstAidTimeStatis...

39 lines
791 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
public class CheatPainFirstAidTimeStatisticsDataModel
{
/// <summary>
/// 月份
/// </summary>
public string MonthValue { get; set; }
/// <summary>
/// 最大值
/// </summary>
public string MaxValue { get; set; }
/// <summary>
/// 最小值
/// </summary>
public string MinValue { get; set; }
/// <summary>
/// 平均值
/// </summary>
public string AvgValue { get; set; }
/// <summary>
/// 总数
/// </summary>
public string SumCount { get; set; }
}
}