using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_Help { public class AverageResultModel { /// <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; } } }