StableVersion4.3/HL_FristAidPlatform_Help/Model/PathogenyModel.cs

20 lines
347 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 PathogenyModel
{
public string Month { get; set; }
public string Count { get; set; }
}
}