StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_Apoplexy_NCXAVM.cs

109 lines
3.6 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 SqlSugar;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 颅内AVM登记表表
/// </summary>
public class T_Service_Apoplexy_NCXAVM
{
/// <summary>
/// ID
/// </summary>
[SugarColumn(IsIdentity = true)]
public long ID { get; set; }
/// <summary>
/// GUID
/// </summary>
[Key]
[SugarColumn(IsPrimaryKey = true)]
public string GUID { get; set; }
/// <summary>
/// 患者编号(GUID)
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// AVM 类型 单选1.脑实质 AVM 2.脑膜脑 AVM
/// </summary>
public string AVMType { get; set; }
/// <summary>
/// AVM大小选项值 单选01.小于 3cm 02.3-6cm 03. 大于 6cm
/// </summary>
public string AVMSize { get; set; }
/// <summary>
/// AVM部位特征选项 单选1.大脑非功能区 2.大脑功能区
/// </summary>
public string AVMCharacter { get; set; }
/// <summary>
/// 静脉引流位置选项 单选1.浅表部 2.深部
/// </summary>
public string AVMYinLiu { get; set; }
/// <summary>
/// SpetzlerMartin评分 整数,结合 CRF 表中给定的分值, 根据 AVM 大小、AVM 部位特征、静脉 引流位置中填写项所对应分值求和计算生成,合理取值范围 0≤n≤5
/// </summary>
public string AVMMarin { get; set; }
/// <summary>
/// 有无静脉血栓 单选1.有 2.无
/// </summary>
public string AVMXueShuanYN { get; set; }
/// <summary>
/// 是否手术治疗 单选1.是 2.否
/// </summary>
public string AVMSSZLYN { get; set; }
/// <summary>
/// AVM治疗时间 yyyy-MM-dd HH:mm
/// </summary>
public string AVMZLTime { get; set; }
/// <summary>
/// AVM治疗策略选项 多选01.栓塞术 02.血肿清除术 03.AVM 切除术 04.放射外科手术 05.复合手术 存储格式示例:;01;02;03;
/// </summary>
public string AVMCeLue { get; set; }
/// <summary>
/// 治疗并发症选项 多选01.颅内出血 02.脑梗死 03 高灌注综合征 04 正常灌注压突破 98.无 99.其他 存储格式示例:;01;02;03;
/// </summary>
public string AVMBFZ { get; set; }
/// <summary>
/// 治疗并发症其他
/// </summary>
public string AVMBFZOther { get; set; }
/// <summary>
/// AVM 左侧责任病灶位置部位 多选01.额叶 02.顶叶 03.颞叶 04.枕叶 05.小脑 06.深部 存储格式示例:;01;02;03;
/// </summary>
public string AVMLSite { get; set; }
/// <summary>
/// AVM 右侧责任病灶 位置 多选01.额叶 02.顶叶 03.颞叶 04.枕叶 05.小脑 06.深部 存储格式示例:;01;02;03;
/// </summary>
public string AVMRSite { get; set; }
/// <summary>
/// AVM 中线部位责任 病灶位置 多选01.脑干 02.胼胝体 99.其他 存储格式示例:;01;02;03;
/// </summary>
public string AVMMSite { get; set; }
/// <summary>
/// AVM 中线部位责任 病灶位置其他
/// </summary>
public string AVMMSiteOther { get; set; }
/// <summary>
/// 删除标记0未删除1已删除
/// </summary>
public int DeleteFlag { get; set; }
}
}