StableVersion4.3/HL_FristAidPlatform_Models/Sercice/T_Service_Apoplexy_KFZL.cs

49 lines
1.4 KiB
C#
Raw Permalink Normal View History

2024-03-11 09:47:34 +08:00
using SqlSugar;
using System.ComponentModel.DataAnnotations;
namespace HL_FristAidPlatform_Models
{
/// <summary>
/// 康复治疗表
/// </summary>
public class T_Service_Apoplexy_KFZL
{
/// <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>
/// 是否接受康复治疗 单选1.是 2.否
/// </summary>
public string KFZLYN { get; set; }
/// <summary>
/// 康复治疗方式 多选01.传统康复(针灸 、推拿) 02.运动疗法PT03.作业疗法OT 04.言语训练ST 99.其他(认知训练、吞咽治疗、心 理治疗、理疗) 存储格式示例:;01;02;03;
/// </summary>
public string KFWays { get; set; }
/// <summary>
/// 康复治疗场所 多选1.床旁 2.康复科 存储格式示例:;1;2;
/// </summary>
public string KFPlace { get; set; }
/// <summary>
/// 删除标记0未删除1已删除
/// </summary>
public int DeleteFlag { get; set; }
}
}