StableVersion4.3/HL_FristAidPlatform_DTO/Service/AverageResultModelDTO.cs

32 lines
703 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_Help
{
public class AverageResultModelDTO
{
/// <summary>
/// 键
/// </summary>
public string Key { get; set; }
/// <summary>
/// 值
/// </summary>
public string Value { get; set; }
/// <summary>
/// 每月住院人数
/// </summary>
public string MonthHospitalizationsNumber { get; set; }
/// <summary>
/// 每月住院费用(单位:元(人民币))
/// </summary>
public string MonthInCost { get; set; }
}
}