using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_Help.Model
{
public class EpidemicNotificationJsonModel
{
//
/// 患者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 string NucleicAcidJson { get; set; }
}
}