StableVersion4.3/HL_FristAidPlatform_DTO/Service/T_Service_Apoplexy_FollowUp...

60 lines
1.4 KiB
C#
Raw Normal View History

2024-03-11 09:47:34 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class T_Service_Apoplexy_FollowUpBaseDTO
{
/// <summary>
/// ID
/// </summary>
public int ID { get; set; }
/// <summary>
/// GUID
/// </summary>
public string GUID { get; set; }
/// <summary>
/// 患者GUID
/// </summary>
public string PatientGuid { get; set; }
/// <summary>
/// 下次随访时间
/// </summary>
public DateTime NextTime { get; set; }
/// <summary>
/// 距今还有多少天
/// </summary>
public string DayCount { get; set; }
/// <summary>
/// 医院GUID
/// </summary>
public string HospitalGuid { get; set; }
/// <summary>
/// 信息填报占比
/// </summary>
public string Proportion { get; set; }
/// <summary>
/// 创建日期
/// </summary>
public DateTime CreationDate { get; set; } = DateTime.Now;
/// <summary>
/// 创建人ID
/// </summary>
public long CreatorID { get; set; }
/// <summary>
/// 删除标记
/// </summary>
public int DeleteFlag { get; set; }
}
}