using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class BloodCollectionToResultAVETimeModelDTO { /// /// 键 /// public string Key { get; set; } /// /// 值 /// public string Value { get; set; } /// /// 每月住院人数 /// public string MonthHospitalizationsNumber { get; set; } /// /// 每月住院费用(单位:元(人民币)) /// public string MonthInCost { get; set; } } }