StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_Apoplexy_FollowUp...

52 lines
1.2 KiB
C#

using SqlSugar;
using System;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
public class T_Service_Apoplexy_FollowUpBase
{
/// <summary>
/// ID
/// </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>
/// 下次随访时间
/// </summary>
public DateTime NextTime { get; set; }
/// <summary>
/// 医院GUID
/// </summary>
public string HospitalGuid { 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; }
}
}