28 lines
760 B
C#
28 lines
760 B
C#
|
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; }
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|