StableVersion4.3/HL_FristAidPlatform_DTO/Service/MRSEvaluationDTO.cs

37 lines
898 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_DTO
{
public class MRSEvaluationDTO
{
/// <summary>
/// 需要术后90天mRS评估总数
/// </summary>
public string SumCount { get; set; }
/// <summary>
/// 术后90天mRS评估比例
/// </summary>
public string SumCountRate { get; set; }
/// <summary>
/// 术后90天mRS评估人数
/// </summary>
public string ScreenCount { get; set; }
/// <summary>
/// 术后良好90天mRS评估人数
/// </summary>
public string GreatScreenCount { get; set; }
/// <summary>
/// 术后良好90天mRS评估比例
/// </summary>
public string GreatScreenCountRate { get; set; }
}
}