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