28 lines
536 B
C#
28 lines
536 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace HL_FristAidPlatform_DTO
|
|||
|
{
|
|||
|
public class ApoplexyOutputDTO
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 第一行标题
|
|||
|
/// </summary>
|
|||
|
public List<string> title1;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 第二行标题
|
|||
|
/// </summary>
|
|||
|
public List<string> title2;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 患者数据
|
|||
|
/// </summary>
|
|||
|
public List<List<string>> list;
|
|||
|
|
|||
|
}
|
|||
|
}
|