using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_DTO
{
///
/// 门诊患者疫情期间特别告知书
///
public class T_Service_EpidemicNotificationDTO
{
///
/// 编号
///
public int ID { get; set; }
///
/// GUID
///
[Key]
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 string SignatureDoctor { get; set; }
///
/// 患者签名
///
public string PatientSignature { get; set; }
///
/// 与患者的关系
///
public string Relationship { get; set; }
///
/// 签名日期
///
public string SignatureDate { get; set; }
}
}