StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_Apoplexy_HAT.cs

37 lines
894 B
C#

using SqlSugar;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
//T_Service_Apoplexy_HAT类定义了一个用于存储脑卒中HAT评分表的实体
public class T_Service_Apoplexy_HAT
{
[Key]
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
public int ID { get; set; }
//患者GUID
public string PatientGuid { get; set; }
//问题1
public string Question1 { get; set; }
//问题2
public string Question2 { get; set; }
//问题3
public string Question3 { get; set; }
//总分
public string TotalScore { get; set; }
//删除标记
public int DeleteFlag { get; set; }
//评分时间
public string ScoreTime { get; set; }
//创建人ID
public string CreateID { get; set; }
}
}