using SqlSugar; using System.ComponentModel.DataAnnotations; namespace HL_FristAidPlatform_Models { /// /// 门诊患者疫情期间特别告知书 /// public class T_Service_EpidemicNotification { /// /// 编号 /// [SugarColumn(IsIdentity = true)] public int ID { get; set; } /// /// GUID /// [Key] [SugarColumn(IsPrimaryKey = true)] public string GUID { get; set; } /// /// 患者GUID /// public string PatientGUID { get; set; } /// /// 问题1 /// public int Question_1 { get; set; } /// /// 问题2 /// public int Question_2 { get; set; } /// /// 问题3 /// public int Question_3 { get; set; } /// /// 问题4 /// public int Question_4 { get; set; } /// /// 问题5 /// public int Question_5 { get; set; } /// /// 问题6 /// public int Question_6 { get; set; } /// /// 医生签名 /// public byte[] SignatureDoctor { get; set; } /// /// 患者签名 /// public byte[] PatientSignature { get; set; } /// /// 与患者的关系 /// public string Relationship { get; set; } /// /// 签名日期 /// public string SignatureDate { get; set; } /// /// 健康码颜色 1 红 2 黄 3 绿 /// public string HealthCode { get; set; } } }