using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class EpidemicNotificationDTO { /// /// 患者GUID /// public string PatientGUID { get; set; } /// /// 问题1 /// public int Question_1 { get; set; } = -1; /// /// 问题2 /// public int Question_2 { get; set; } = -1; /// /// 问题3 /// public int Question_3 { get; set; } = -1; /// /// 问题4 /// public int Question_4 { get; set; } = -1; /// /// 问题5 /// public int Question_5 { get; set; } = -1; /// /// 问题6 /// public int Question_6 { get; set; } = -1; /// /// 医生签名 /// 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; } /// /// /// public List NucleicAcidLst { get; set; } } /// /// 核酸检查结果信息 /// public class NucleicAcidModel { /// /// 修改时必传 /// public string GUID { get; set; } /// /// 核酸检查日期 /// public string InspectionTime { get; set; } /// /// 检查结果 0 阴性 1 阳性 /// public string InspectionResults { get; set; } } }