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.

62 lines
1.4 KiB

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