using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class ApoplexyOutputDTO { /// /// 第一行标题 /// public List title1; /// /// 第二行标题 /// public List title2; /// /// 患者数据 /// public List> list; } }