using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class ApoplexyPatientsDTO
{
public string GUID { get; set; }
///
/// 姓名
///
public string Name { get; set; }
///
/// 年龄
///
public int Age { get; set; }
///
/// 性别
///
public int Gender { get; set; }
///
/// 填报状态 1 填报中 2 填报完成
///
public int Status { get; set; }
///
/// 建档时间
///
public string CreationDate { get; set; }
///
/// 上传状态 0 没有上传操作 1 上传成功 2 上传失败
///
public int ReportingStatus { get; set; }
///
/// 上传时间
///
public DateTime? ReportingDateTime { get; set; }
///
/// 治疗类型
///
public string acZLType { get; set; }
///
/// 入院途径
///
public string BCRyType { get; set; }
///
/// 来院方式
///
public string BCLyType { get; set; }
///
/// 审核状态 0 无状态 1 待审核 2 审核通过 3 审核不通过
///
public int AuditStatus { get; set; }
///
/// 住院时间
///
public string HospitalizationTime { get; set; }
}
}