using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; namespace HL_FristAidPlatform_Models { /// /// 卒中现场评估分诊量表(FAST-ED) /// public class T_Service_Apoplexy_FASTED { /// /// ID /// [SugarColumn(IsIdentity = true)] public long ID { get; set; } /// /// GUID /// [Key] [SugarColumn(IsPrimaryKey = true)] public string GUID { get; set; } /// /// 删除标记 /// public int DeleteFlag { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 创建人 /// public long CreateID { get; set; } /// /// 面瘫 /// public string FacialParalysis { get; set; } /// /// 上肢无力 /// public string UpperLimbWeakness { get; set; } /// /// 语言改变 /// public string LanguageChange { get; set; } /// /// 眼球斜视 /// public string StrabismusOfEyeball { get; set; } /// /// 失认/忽视 /// public string AgnosiaOrIgnore { get; set; } public string PatientGUID { get; set; } } }