StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_Apoplexy_Patients...

60 lines
1.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using SqlSugar;
using System;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 卒中业务时间记录表
/// </summary>
public class T_Service_Apoplexy_PatientsTimeAxis
{
/// <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 long TimeAxisID { get; set; }
/// <summary>
/// 操作记录时间
/// </summary>
public DateTime? RecordingTime { get; set; }
/// <summary>
/// 参考时间
/// </summary>
public DateTime? NormalTime { get; set; }
/// <summary>
/// 删除标记0未删除1删除
/// </summary>
public int DeleteFlag { get; set; }
/// <summary>
/// 是否来源于RFID自动更新0否1是默认0
/// </summary>
public int IsAutoForRFID { get; set; }
/// <summary>
/// 所属模块ID
/// </summary>
public long SystemModuleID { get; set; }
}
}