29 lines
830 B
C#
29 lines
830 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HL_FristAidPlatform_DTO
|
|||
|
{
|
|||
|
public class TIACVDDAPTPatientDTO
|
|||
|
{
|
|||
|
public string GUID { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public int Age { get; set; }
|
|||
|
public int Gender { get; set; }
|
|||
|
public DateTime CreationDate { get; set; }
|
|||
|
public int Diagnosis { get; set; }
|
|||
|
// public string CYDY { get; set; }
|
|||
|
public string CYTime { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 治疗类型
|
|||
|
/// 类型,多选 01.静脉溶栓 02.血管内介入治疗 03.脑出血
|
|||
|
/// 04.颅内动脉瘤05.CEA/CAS
|
|||
|
/// 存储格式示例:;01;02;03;
|
|||
|
/// </summary>
|
|||
|
public string acZLType { get; set; }
|
|||
|
}
|
|||
|
}
|