32 lines
603 B
C#
32 lines
603 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
/// <summary>
|
|
/// 卒中导出EXCEL
|
|
/// </summary>
|
|
public class ApoplexyOutputModel
|
|
{
|
|
|
|
/// <summary>
|
|
/// 第一行标题
|
|
/// </summary>
|
|
public List<string> title1;
|
|
|
|
/// <summary>
|
|
/// 第二行标题
|
|
/// </summary>
|
|
public List<string> title2;
|
|
|
|
/// <summary>
|
|
/// 患者数据
|
|
/// </summary>
|
|
public List<List<string>> list;
|
|
|
|
}
|
|
}
|