StableVersion4.3/HL_FristAidPlatform_Models/Base/T_Base_TimeAxis_Templet.cs

111 lines
2.8 KiB
C#
Raw Permalink 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_Base_TimeAxis_Templet
{
/// <summary>
/// ID
/// </summary>
[SugarColumn(IsIdentity = true)]
public int ID { get; set; }
/// <summary>
/// GUID
/// </summary>
[Key]
[SugarColumn(IsPrimaryKey = true)]
public string GUID { get; set; }
/// <summary>
/// 系统模块编号
/// </summary>
public long SystemModuleID { get; set; }
/// <summary>
/// 模板名称
/// </summary>
public string TempletName { get; set; }
/// <summary>
/// 来院方式代码 0未选择参考字典表T_Base_HospitalMode
/// </summary>
public string HospitalModeValue { get; set; }
/// <summary>
/// 是否启动绿色通道1是2否默认2
/// </summary>
public int IsGreenChannel { get; set; }
/// <summary>
/// 每行节点总个数
/// </summary>
public int TotalPerRow { get; set; }
/// <summary>
/// 每列X轴递增间隔
/// </summary>
public int IncrementalInterval_X { get; set; }
/// <summary>
/// 每行Y轴递增间隔
/// </summary>
public int IncrementalInterval_Y { get; set; }
/// <summary>
/// 图标起始点X坐标
/// </summary>
public int LocationX_Start { get; set; }
/// <summary>
/// 图标起始点Y坐标
/// </summary>
public int LocationY_Start { get; set; }
/// <summary>
/// 备注说明
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 排序
/// </summary>
public int OrderBy { get; set; }
/// <summary>
/// 是否删除0启用1删除
/// </summary>
public int DeleteFlag { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime CreationDate { get; set; }
/// <summary>
/// 修改时间
/// </summary>
public DateTime ModificationDate { get; set; }
/// <summary>
/// 是否溶栓治疗 LYM 2020-03-31
/// 0:无溶栓
/// 1:院前溶栓
/// 2:院内溶栓
/// 3:院前溶栓+院内溶栓
/// </summary>
public string Thrombolysis { get; set; }
/// <summary>
/// 是否介入治疗 LYM 2020-03-31
/// 0:否
/// 1:是
/// </summary>
public string Interventional_Therapy { get; set; }
}
}