32 lines
750 B
C#
32 lines
750 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class BloodCollectionToResultAVETimeModel
|
|
{
|
|
/// <summary>
|
|
/// 键
|
|
/// </summary>
|
|
public string Key { get; set; }
|
|
|
|
/// <summary>
|
|
/// 值:采血至出结果平均时间
|
|
/// </summary>
|
|
public string Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// 月采血人数
|
|
/// </summary>
|
|
public string MonthNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 月时间间隔(采血至出报告)
|
|
/// </summary>
|
|
public string MonthBloodCollectionToReportTime { get; set; }
|
|
}
|
|
}
|