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();