StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Base_ICHAPS.cs

106 lines
2.5 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.

using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// ICH_APS评分
/// </summary>
public class T_Base_ICHAPS
{
/// <summary>
///
/// </summary>
[SugarColumn(IsIdentity = true)]
public int ID { get; set; }
/// <summary>
/// GUID
/// </summary>
[Key]
[SugarColumn(IsPrimaryKey = true)]
public string GUID { get; set; } = Guid.NewGuid().ToString();
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGUID { get; set; }
/// <summary>
/// 评分类型
/// </summary>
public int flag { get; set; }
/// <summary>
/// 年龄(岁)
/// </summary>
public string Age { get; set; }
/// <summary>
/// 既往史/合并症
/// </summary>
public string Pasthistory { get; set; }
/// <summary>
/// 卒中前生活不能自理MRS评分≥3分
/// </summary>
public string MRSScore { get; set; }
/// <summary>
/// 入院NIHSS评分
/// </summary>
public string NIHSSScore { get; set; }
/// <summary>
/// 入院Glasgow评分
/// </summary>
public string GlasgowScore { get; set; }
/// <summary>
/// 吞咽困难
/// </summary>
public string Dysphagia { get; set; }
/// <summary>
/// 幕下出血
/// </summary>
public string Fratentorialhemorrhage { get; set; }
/// <summary>
/// 出血破入脑室
/// </summary>
public string Hemorrhagebreaks { get; set; }
/// <summary>
/// 出血体积/ml
/// </summary>
public string Bleedingvolume { get; set; }
/// <summary>
/// 总分
/// </summary>
public string TotalScore { get; set; }
/// <summary>
/// 创建人
/// </summary>
public long CreatorID { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreationDate { get; set; } = Convert.ToDateTime(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
/// <summary>
/// 是否删除
/// </summary>
public int DeleteFlag { get; set; }
}
}