You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
185 lines
4.5 KiB
185 lines
4.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.PhoneFollowUps
|
|
{
|
|
public class PhoneFollowUpWithCriticalItemDto
|
|
{
|
|
/// <summary>
|
|
/// 随访主表ID
|
|
/// </summary>
|
|
public Guid FollowUpId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
public string PatientName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 身份证
|
|
/// </summary>
|
|
public string IdNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人员ID
|
|
/// </summary>
|
|
public Guid PatientRegisterId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 人员条码号
|
|
/// </summary>
|
|
public string PatientRegisterNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 体检次数
|
|
/// </summary>
|
|
public short MedicalTimes { get; set; }
|
|
|
|
public string SexName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出生日期
|
|
/// </summary>
|
|
public string? BirthDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 年龄
|
|
/// </summary>
|
|
public short? Age { get; set; }
|
|
/// <summary>
|
|
/// 工卡号
|
|
/// </summary>
|
|
public string? JobCardNo { get; set; }
|
|
/// <summary>
|
|
/// 体检卡号
|
|
/// </summary>
|
|
public string? MedicalCardNo { get; set; }
|
|
|
|
public string MaritalStatusName { get; set; }
|
|
|
|
public string MedicalTypeName { get; set; }
|
|
|
|
public string PersonnelTypeName { get; set; }
|
|
/// <summary>
|
|
/// 职务
|
|
/// </summary>
|
|
public string? JobPost { get; set; }
|
|
/// <summary>
|
|
/// 职称
|
|
/// </summary>
|
|
public string? JobTitle { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 是否上传到WEB
|
|
/// </summary>
|
|
public char? IsUpload { get; set; }
|
|
|
|
/// <summary>
|
|
/// 完成标志
|
|
/// </summary>
|
|
public char? CompleteFlag { get; set; }
|
|
|
|
/// <summary>
|
|
/// 体检开始标志
|
|
/// </summary>
|
|
public char? IsMedicalStart { get; set; }
|
|
/// <summary>
|
|
/// 体检开始日期
|
|
/// </summary>
|
|
public string? MedicalStartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 档案号
|
|
/// </summary>
|
|
public string PatientNo { get; set; }
|
|
|
|
|
|
public string? NationName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 电话
|
|
/// </summary>
|
|
public string? Telephone { get; set; }
|
|
/// <summary>
|
|
/// 手机号
|
|
/// </summary>
|
|
public string? MobileTelephone { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单位名称
|
|
/// </summary>
|
|
public string CustomerOrgName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 父级单位名称
|
|
/// </summary>
|
|
public string CustomerOrgParentName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 组合项目异常集合
|
|
/// </summary>
|
|
public List<PhoneFollowUpWithCriticalItemAbnormalAsbitemDto> AbnormalAsbitemDetail { get; set; }
|
|
|
|
/// <summary>
|
|
/// 项目异常集合
|
|
/// </summary>
|
|
public List<PhoneFollowUpWithCriticalItemAbnormalItemDto> AbnormalItemDetail { get; set; }
|
|
|
|
/// <summary>
|
|
/// 电话随访记录
|
|
/// </summary>
|
|
public List<PhoneFollowUpSimpleDto> PhoneFollowUpDetail { get; set; }
|
|
}
|
|
|
|
public class PhoneFollowUpWithCriticalItemAbnormalItemDto
|
|
{
|
|
/// <summary>
|
|
///项目名称
|
|
/// </summary>
|
|
public string ItemName { get; set; }
|
|
|
|
/// <summary>
|
|
///异常描述
|
|
/// </summary>
|
|
public string CriticalValueContent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否危急值
|
|
/// </summary>
|
|
public char IsCriticalValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否复查
|
|
/// </summary>
|
|
public char IsReview { get; set; }
|
|
}
|
|
|
|
public class PhoneFollowUpWithCriticalItemAbnormalAsbitemDto
|
|
{
|
|
/// <summary>
|
|
///组合项目名称
|
|
/// </summary>
|
|
public string AsbitemName { get; set; }
|
|
|
|
/// <summary>
|
|
///异常描述
|
|
/// </summary>
|
|
public string CriticalValueContent { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否危急值
|
|
/// </summary>
|
|
public char IsCriticalValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否复查
|
|
/// </summary>
|
|
public char IsReview { get; set; }
|
|
}
|
|
|
|
|
|
}
|