39 lines
834 B
C#
39 lines
834 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class ChestPainPatientNumModel
|
|
{
|
|
/// <summary>
|
|
/// 今日新增总数
|
|
/// </summary>
|
|
public int ToDayCount { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 本周总数
|
|
/// </summary>
|
|
public int WeekCount { get; set; } = 0;
|
|
|
|
|
|
/// <summary>
|
|
/// 本月总数
|
|
/// </summary>
|
|
public int MonthCount { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 近6个月总数
|
|
/// </summary>
|
|
public int SixMonthCount { get; set; } = 0;
|
|
|
|
/// <summary>
|
|
/// 累计总数
|
|
/// </summary>
|
|
public int TotalCount { get; set; } = 0;
|
|
|
|
}
|
|
}
|