StableVersion4.3/HL_FristAidPlatform_DTO/Service/CheatPainFirstAidTimeStatis...

40 lines
789 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 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; }
}
}