StableVersion4.3/HL_FristAidPlatform_Help/Model/MRSModel.cs

45 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help
{
public class MRSModel
{
public string Name { get; set; }
public int Age { get; set; }
public int Gender { get; set; }
/// <summary>
/// 出院时mRS评分分数
/// 整数,合理取值范围 0≤n≤6
/// 当 ACZLType 包含:;03;04;05; 时,
/// 填写该字段
/// </summary>
public string CYMRS { get; set; }
public string OutpatientNumber { get; set; }
/// <summary>
/// 住院号
/// </summary>
public string AdmissionNumber { get; set; }
/// <summary>
/// 科室
/// </summary>
public string Departments { get; set; }
public DateTime ScoreTime { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string CreateUser { get; set; }
}
}