StableVersion4.3/HL_FristAidPlatform_DTO/Service/T_Service_Apoplexy_HATDTO.cs

32 lines
756 B
C#

namespace HL_FristAidPlatform_DTO
{
//T_Service_Apoplexy_HAT类定义了一个用于存储脑卒中HAT评分表的实体
public class T_Service_Apoplexy_HATDTO
{
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; }
}
}