40 lines
789 B
C#
40 lines
789 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class CheatPainFirstAidTimeStatisticsDataDTO
|
|
{
|
|
/// <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; }
|
|
|
|
|
|
|
|
}
|
|
}
|