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.
83 lines
2.0 KiB
83 lines
2.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.PhoneFollowUps
|
|
{
|
|
public class GetPatientRegisterCriticalListInputDto
|
|
{
|
|
/// <summary>
|
|
/// 单位id
|
|
/// </summary>
|
|
public Guid? CustomerOrgId { get; set; }
|
|
|
|
public Guid? CustomerOrgRegisterId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单位分组
|
|
/// </summary>
|
|
public List<Guid> CustomerOrgGroupIds { get; set; } = new List<Guid>();
|
|
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
public string? PatientName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 性别
|
|
/// </summary>
|
|
public char? SexId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 档案号
|
|
/// </summary>
|
|
public string? PatientNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 条码号
|
|
/// </summary>
|
|
public string? PatientRegisterNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 身份证号
|
|
/// </summary>
|
|
public string? IdNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
public string? StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
public string? EndDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 日期类型(1、登记日期 2、体检日期 ) 默认登记日期
|
|
/// </summary>
|
|
public char DateType { get; set; } = '1';
|
|
|
|
/// <summary>
|
|
/// 完成状态 改成多选集合
|
|
/// </summary>
|
|
public List<char> CompleteFlags { get; set; } = new List<char>();
|
|
|
|
/// <summary>
|
|
/// 体检类别id集合
|
|
/// </summary>
|
|
public List<Guid?> MedicalTypeIds { get; set; } = new List<Guid?>();
|
|
|
|
|
|
/// <summary>
|
|
/// 手机号(支持手机跟座机)
|
|
/// </summary>
|
|
public string? Phone { get; set; }
|
|
|
|
|
|
|
|
public int MaxResultCount { get; set; } = 50;
|
|
|
|
public int SkipCount { get; set; } = 0;
|
|
}
|
|
}
|