namespace Shentun.PeisReport.Api.Dto.ReportBusiness { public class GetLisReportByIdNoDto : PublicResultDto { public List Data { get; set; } = new List(); } public class GetLisReportByIdNoResultDataDto { /// /// 检验目的 /// public string InspectionPurpose { get; set; } /// /// 姓名 /// public string PatientName { get; set; } /// /// 身份证号码 /// public string IdNo { get; set; } /// /// 手机号 /// public string MobileTelephone { get; set; } /// /// 报告发布时间 /// public string SendDateTime { get; set; } /// /// 报告地址 /// public string ReportUrl { get; set; } } }