StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_EpidemicNotificat...

84 lines
1.9 KiB
C#
Raw Normal View History

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