27 lines
605 B
C#
27 lines
605 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_DTO
|
|
{
|
|
public class ThrombolysisStrokeRateModelDTO
|
|
{
|
|
/// <summary>
|
|
/// 发病4.5小时内缺血性溶栓率
|
|
/// </summary>
|
|
///
|
|
|
|
//总数
|
|
public int Count { get; set; }
|
|
|
|
//溶栓数
|
|
public int ThrombolysisNumber { get; set; }
|
|
//未溶栓数
|
|
public int NotThrombolysisNumber { get; set; }
|
|
//溶栓率
|
|
public string ThrombolysisRate { get; set; }
|
|
}
|
|
}
|