using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HL_FristAidPlatform_DTO { public class ApoplexyOutputPatientListDTO { public string GUID { get; set; } public string Name { get; set; } public string IdentityCard { get; set; } public string AdmissionNumber { get; set; } public int Age { get; set; } public int Gender { get; set; } public string acZLType { get; set; } public string CreationDate { get; set; } public string CYTime { get; set; } /// ///EXCEL导出状态 0未导出 1已导出 /// public int ReportsStatus { get; set; } } }