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 { /// /// TCD经颅多普勒增声 /// public class T_Service_ApoplexyTCD { /// /// ID /// [SugarColumn(IsIdentity = true)] public int ID { get; set; } /// /// GUID /// [Key] [SugarColumn(IsPrimaryKey = true)] public string GUID { get; set; } /// /// /// public string PatientGUID { get; set; } /// /// 是否行TCD检查 /// public string IsTCD { get; set; } /// /// 检查时间 精确到年月日 /// public string InspectionTime { get; set; } /// /// 检查人 /// public string InspectionUser { get; set; } /// /// 检查机构名称 /// public string InspectionInstitutionName { get; set; } /// /// 超声所见 /// public string UltrasoundFindings { get; set; } /// /// 超声提醒 /// public string UltrasoundReminder { get; set; } /// /// 当前筛查人 /// public string ScreenName { get; set; } /// /// 填写状态:0 未填写 1 已填写 /// public string FillinStatus { get; set; } = "0"; /// /// /// public long CreateID { get; set; } /// /// /// public DateTime CreateTime { get; set; } /// /// /// public int DeleteFlag { get; set; } } }