namespace HL_FristAidPlatform_DTO { /// /// T_Service_Apoplexy_DRAGON类用于存储患者的中风服务调查表信息 /// public class T_Service_Apoplexy_DRAGONDTO { public int ID { get; set; } //PatientGuid:患者的唯一标识 public string PatientGuid { get; set; } //问题1 public string Question1 { get; set; } //问题2 public string Question2 { get; set; } //问题3 public string Question3 { get; set; } //问题4 public string Question4 { get; set; } //问题5 public string Question5 { get; set; } //问题6 public string Question6 { get; set; } //TotalScore:总得分 public string TotalScore { get; set; } //DeleteFlag:删除标志,0表示未删除,1表示已删除 public int DeleteFlag { get; set; } //评分时间 public string ScoreTime { get; set; } //创建人ID public string CreateID { get; set; } } }