60 lines
1.6 KiB
C#
60 lines
1.6 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace HL_FristAidPlatform_Help
|
||
{
|
||
public class CIEarlyRehabilitationModel
|
||
{
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public string GUID { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
|
||
public string Name { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
|
||
public int Age { get; set; }
|
||
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public int Gender { get; set; }
|
||
|
||
/// <summary>
|
||
///
|
||
/// </summary>
|
||
public DateTime CreationDate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 治疗类型
|
||
/// 类型,多选 01.静脉溶栓 02.血管内介入治疗 03.脑出血
|
||
/// 04.颅内动脉瘤05.CEA/CAS
|
||
/// 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string acZLType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否接受康复治疗 单选,1.是 2.否
|
||
/// </summary>
|
||
public string KFZLYN { get; set; }
|
||
|
||
/// <summary>
|
||
/// 康复治疗方式 多选,01.传统康复(针灸 、推拿) 02.运动疗法(PT)03.作业疗法(OT) 04.言语训练(ST) 99.其他(认知训练、吞咽治疗、心 理治疗、理疗) 存储格式示例:;01;02;03;
|
||
/// </summary>
|
||
public string KFWays { get; set; }
|
||
|
||
/// <summary>
|
||
/// 康复治疗场所 多选,1.床旁 2.康复科 存储格式示例:;1;2;
|
||
/// </summary>
|
||
public string KFPlace { get; set; }
|
||
}
|
||
}
|