StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_Pathography.cs

70 lines
1.6 KiB
C#

using SqlSugar;
using System;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 患者电子病历信息表
/// </summary>
public class T_Service_Pathography
{
/// <summary>
/// ID
/// </summary>
[SugarColumn(IsIdentity = true)]
public long 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 string Content { get; set; }
/// <summary>
/// 删除标记0未删除1已删除
/// </summary>
public int DeleteFlag { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? CreationDate { get; set; }
/// <summary>
/// 创建人编号
/// </summary>
public long CreatorID { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string Creator { get; set; }
/// <summary>
/// 最后编辑时间
/// </summary>
public DateTime? EditTime { get; set; }
/// <summary>
/// 最后编辑人编号
/// </summary>
public long EditorID { get; set; }
/// <summary>
/// 最后编辑人
/// </summary>
public string Editor { get; set; }
}
}