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.
46 lines
1.1 KiB
46 lines
1.1 KiB
namespace Shentun.PeisReport.Api.Dto.ReportBusiness
|
|
{
|
|
public class GetPeisReportByIdNoDto: PublicResultDto
|
|
{
|
|
public List<GetPeisReportByIdNoResultDataDto> Data { get; set; } = new List<GetPeisReportByIdNoResultDataDto>();
|
|
}
|
|
|
|
public class GetPeisReportByIdNoResultDataDto
|
|
{
|
|
|
|
/// <summary>
|
|
/// 条码号
|
|
/// </summary>
|
|
public string BarcodeNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 姓名
|
|
/// </summary>
|
|
public string PatientName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 身份证号码
|
|
/// </summary>
|
|
public string IdNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 手机号
|
|
/// </summary>
|
|
public string MobileTelephone { get; set; }
|
|
|
|
/// <summary>
|
|
/// 体检次数
|
|
/// </summary>
|
|
public string MedicalTimes { get; set; }
|
|
|
|
/// <summary>
|
|
/// 体检日期 格式(2024-02-20)
|
|
/// </summary>
|
|
public string MedicalDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报告地址
|
|
/// </summary>
|
|
public string ReportUrl { get; set; }
|
|
}
|
|
}
|