StableVersion4.3/HL_FristAidPlatform_Help/Model/CIEarlyRehabilitationModel.cs

60 lines
1.6 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 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.运动疗法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; }
}
}