StableVersion4.3/HL_FristAidPlatform_Help/Model/CICapriniModel.cs

67 lines
1.7 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 CICapriniModel
{
/// <summary>
///
/// </summary>
public string GUID { get; set; }
/// <summary>
///
/// </summary>
public string Name { get; set; }
/// <summary>
///
/// </summary>
public int Age { get; set; }
/// <summary>
///
/// </summary>
public int Gender { get; set; }
/// <summary>
///
/// </summary>
public DateTime CreationDate { get; set; }
/// <summary>
/// 治疗类型
/// 类型,多选 01.静脉溶栓 02.血管内介入治疗 03.脑出血
/// 04.颅内动脉瘤05.CEA/CAS
/// 存储格式示例:;01;02;03;
/// </summary>
public string acZLType { get; set; }
/// <summary>
/// 急性脑梗死患者到院时间 格式yyyy-MM-dd HH:mm
/// 当 ACZLType 包含:;01;02;时,填 写该字段,急性脑梗死是否在院卒 中选“是”时,到院时间=发病时间
/// </summary>
public string NGSJZDaoYuanTime { get; set; }
/// <summary>
/// 本次发病前 mRS评分分数 整数,合理取值范围 0≤n≤6
/// ACZLType 包含:;01;02;03;04;05; 时,填写该字段
/// </summary>
public string RYMRS { get; set; }
/// <summary>
/// 评分时间/用药时间
/// </summary>
public DateTime DateTime { get; set; }
/// <summary>
/// 时间差
/// </summary>
public int Hours { get; set; }
}
}