using System; using System.Collections.Generic; using System.Text; namespace Shentun.Peis.LisRequests { public class GetLisRequestListDto { /// /// 单位id /// public Guid? CustomerOrgId { get; set; } public Guid? CustomerOrgRegisterId { get; set; } /// /// 姓名 /// 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; } /// /// 手机号(支持手机跟座机) /// public string? Phone { get; set; } //public override int MaxResultCount { get; set; } = 50; public int MaxResultCount { get; set; } = 50; public int SkipCount { get; set; } = 0; } }