From ca74656d8774b63efb31be48c26abc939346a52e Mon Sep 17 00:00:00 2001 From: wxd <123@qq.com> Date: Wed, 27 Nov 2024 11:46:18 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=84=E5=90=88=E9=A1=B9=E7=9B=AE=E6=A3=80?= =?UTF-8?q?=E6=9F=A5=E5=8D=95=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../PeisReports/GetRegisterAsbitemRegisterCheckStatusDto.cs | 5 +++++ .../PeisReports/PeisReportAppService.cs | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/Shentun.Peis.Application.Contracts/PeisReports/GetRegisterAsbitemRegisterCheckStatusDto.cs b/src/Shentun.Peis.Application.Contracts/PeisReports/GetRegisterAsbitemRegisterCheckStatusDto.cs index e8147a9..f58d2db 100644 --- a/src/Shentun.Peis.Application.Contracts/PeisReports/GetRegisterAsbitemRegisterCheckStatusDto.cs +++ b/src/Shentun.Peis.Application.Contracts/PeisReports/GetRegisterAsbitemRegisterCheckStatusDto.cs @@ -90,5 +90,10 @@ namespace Shentun.Peis.PeisReports /// 电话 /// public string? Telephone { get; set; } + + /// + /// 检查单号 + /// + public string CheckRequestNo { get; set; } } } diff --git a/src/Shentun.Peis.Application/PeisReports/PeisReportAppService.cs b/src/Shentun.Peis.Application/PeisReports/PeisReportAppService.cs index 8f7411b..8fdec55 100644 --- a/src/Shentun.Peis.Application/PeisReports/PeisReportAppService.cs +++ b/src/Shentun.Peis.Application/PeisReports/PeisReportAppService.cs @@ -291,7 +291,7 @@ namespace Shentun.Peis.PeisReports } - int totalCount = sumquery.Count(); + int totalCount = sumquery.Count(); var sumqueryGroup = sumquery.Skip(input.SkipCount * input.MaxResultCount).Take(input.MaxResultCount).ToList(); @@ -531,7 +531,8 @@ namespace Shentun.Peis.PeisReports ChargePrice = s.j.ChargePrice, IsCharge = s.j.IsCharge, MedicalTimes = s.a.MedicalTimes, - StandardPrice = s.j.StandardPrice + StandardPrice = s.j.StandardPrice, + CheckRequestNo = s.jk.CheckRequestNo }).ToList();