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.

41 lines
1.0 KiB

namespace Shentun.PeisReport.Api.Dto.ReportBusiness
{
public class GetLisReportByIdNoDto : PublicResultDto
{
public List<GetLisReportByIdNoResultDataDto> Data { get; set; } = new List<GetLisReportByIdNoResultDataDto>();
}
public class GetLisReportByIdNoResultDataDto
{
/// <summary>
/// 检验目的
/// </summary>
public string InspectionPurpose { 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 SendDateTime { get; set; }
/// <summary>
/// 报告地址
/// </summary>
public string ReportUrl { get; set; }
}
}