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.5 KiB
64 lines
1.5 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.PacsBusiness
|
|
{
|
|
public class GetPacsDicomServiceDataByPatientRegisterIdDto
|
|
{
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
public string PatientName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 项目名称
|
|
/// </summary>
|
|
public string AsbitemName { get; set; }
|
|
|
|
/// <summary>
|
|
/// registerCheck表ID
|
|
/// </summary>
|
|
public Guid RegisterCheckId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 实例ID
|
|
/// </summary>
|
|
public string InstanceId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 患者ID
|
|
/// </summary>
|
|
public string ParentPatientId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 系列ID
|
|
/// </summary>
|
|
public string ParentSeriesId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 研究ID
|
|
/// </summary>
|
|
public string ParentStudyId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 路径
|
|
/// </summary>
|
|
public string Path { get; set; }
|
|
|
|
/// <summary>
|
|
/// 文件名称
|
|
/// </summary>
|
|
public string FileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
public string Status { get; set; }
|
|
|
|
public int DisplayOrder { get; set; }
|
|
|
|
}
|
|
}
|