26 lines
761 B
C#
26 lines
761 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class ApoplexyOutputPatientListModel
|
|
{
|
|
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; }
|
|
}
|
|
}
|