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.
64 lines
1.7 KiB
64 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.Worklists
|
|
{
|
|
public class GetWorklistPatientListDto
|
|
{
|
|
public string AccessionNumber { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 检查条码号
|
|
/// </summary>
|
|
public string PatientID { get; set; } = string.Empty;
|
|
|
|
public string Surname { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
public string Forename { get; set; } = string.Empty;
|
|
|
|
public string Title { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 性别
|
|
/// </summary>
|
|
public string Sex { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 出生日期
|
|
/// </summary>
|
|
public DateTime DateOfBirth { get; set; } = DateTime.Now;
|
|
|
|
public string ReferringPhysician { get; set; } = string.Empty;
|
|
|
|
public string PerformingPhysician { get; set; } = string.Empty;
|
|
|
|
public string Modality { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 扫码日期
|
|
/// </summary>
|
|
public DateTime ExamDateAndTime { get; set; } = DateTime.Now;
|
|
|
|
public string ExamRoom { get; set; } = string.Empty;
|
|
|
|
public string ExamDescription { get; set; } = string.Empty;
|
|
|
|
public string StudyUID { get; set; } = string.Empty;
|
|
|
|
public string ProcedureID { get; set; } = string.Empty;
|
|
|
|
public string ProcedureStepID { get; set; } = string.Empty;
|
|
|
|
public string HospitalName { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 预检Aet
|
|
/// </summary>
|
|
public string ScheduledAET { get; set; } = string.Empty;
|
|
|
|
}
|
|
}
|