StableVersion4.3/HL_FristAidPlatform_Help/Model/DNTDMModel.cs

65 lines
1.5 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 DNTDMModel
{
/// <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>
/// 住院时间
/// </summary>
public string HospitalizationTime { get; set; }
/// <summary>
/// 发病时间
/// </summary>
public string FaBingTime { get; set; }
/// <summary>
/// 天数差
/// </summary>
public int DayDifference { get; set; }
/// <summary>
/// 是否降糖药物治疗(急性期1 使用 2 未使用;出院时 02 代表使用降糖)
/// </summary>
public string JiangTang { get; set; }
}
}