StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_Apoplexy_DRAGON.cs

48 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// T_Service_Apoplexy_DRAGON类用于存储患者的中风服务调查表信息
/// </summary>
public class T_Service_Apoplexy_DRAGON
{
[Key]
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
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; }
}
}