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.

38 lines
923 B

using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.Peis.PacsBusiness
{
public class GetPatientRegisterPacsCheckInputDto
{
/// <summary>
/// 姓名
/// </summary>
public string PatientName { get; set; }
/// <summary>
/// 条码号
/// </summary>
public string CheckRequestNo { get; set; }
/// <summary>
/// 日期类型 0-检查日期 1-上传日期
/// </summary>
public char DateType { get; set; }
public string StartDate { get; set; }
public string EndDate { get; set; }
/// <summary>
/// 检查类型 0-普通检查 1-检验 2-特检 3-放射
/// </summary>
public char? CheckTypeFlag { get; set; }
public int MaxResultCount { get; set; } = 1000;
public int SkipCount { get; set; } = 0;
}
}