StableVersion4.3/HL_FristAidPlatform_DTO/Service/ApoplexyOutputPatientListDT...

28 lines
760 B
C#
Raw Normal View History

2024-03-11 09:47:34 +08:00
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; }
/// <summary>
///EXCEL导出状态 0未导出 1已导出
/// </summary>
public int ReportsStatus { get; set; }
}
}