StableVersion4.3/HL_FristAidPlatform_DTO/Service/T_Service_Apoplexy_TOASTDTO.cs

44 lines
1.2 KiB
C#
Raw Permalink 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.

namespace HL_FristAidPlatform_DTO
{
/// <summary>
/// TOAST分型
/// </summary>
public class T_Service_Apoplexy_TOASTDTO
{
/// <summary>
/// ID
/// </summary>
public long ID { get; set; }
/// <summary>
/// GUID
/// </summary>
public string GUID { get; set; }
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// 发病机制TOAST分型选项值 必填单选:
/// 1.大动脉粥样硬化性卒中LAA
/// 2.心源性脑栓塞CE
/// 3.小动脉闭塞性卒中或腔隙性卒中 SAA
/// 4.其他原因所致的缺血性卒中SOE
/// 5.不明原因的缺血性卒中SUE
/// </summary>
public string TJiZhi { get; set; }
/// <summary>
/// 是否烟雾病 必填 单选1.是 2.否
/// </summary>
public string TYwbYN { get; set; }
/// <summary>
/// 删除标记0未删除1已删除
/// </summary>
public int DeleteFlag { get; set; }
}
}