From e104f00001965217d6a7bf6fa76f95ef97c9571d Mon Sep 17 00:00:00 2001 From: xiachao Date: Fri, 16 Aug 2024 15:32:04 +0800 Subject: [PATCH] =?UTF-8?q?CQC=20=E6=8A=A5=E8=A1=A8=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E5=88=B0cqc=E5=B9=B3=E5=8F=B0=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E8=81=94=E8=B0=83=EF=BC=8Cbug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../carbon/pub/service/impl/PubCockpitServiceImpl.java | 2 +- .../cqc/cqcCarbonReport/dto/CqcCarbonReportCountInfo.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/carbon-public/src/main/java/com/thing/carbon/pub/service/impl/PubCockpitServiceImpl.java b/modules/carbon-public/src/main/java/com/thing/carbon/pub/service/impl/PubCockpitServiceImpl.java index e02839a..012ac55 100644 --- a/modules/carbon-public/src/main/java/com/thing/carbon/pub/service/impl/PubCockpitServiceImpl.java +++ b/modules/carbon-public/src/main/java/com/thing/carbon/pub/service/impl/PubCockpitServiceImpl.java @@ -63,7 +63,7 @@ public class PubCockpitServiceImpl implements PubCockpitService { Long processCount = carbonPubProductionModelMapper.selectCountByQuery(QueryWrapper.create()); dto.setProcessCount(processCount); - + //服务产品数 Long productsCount = carbonPubProductionReportMapper.selectCountByQuery(QueryWrapper.create().select()); dto.setProductsCount(productsCount); diff --git a/modules/cqc-service/src/main/java/com/thing/cqc/cqcCarbonReport/dto/CqcCarbonReportCountInfo.java b/modules/cqc-service/src/main/java/com/thing/cqc/cqcCarbonReport/dto/CqcCarbonReportCountInfo.java index ec3c756..248400c 100644 --- a/modules/cqc-service/src/main/java/com/thing/cqc/cqcCarbonReport/dto/CqcCarbonReportCountInfo.java +++ b/modules/cqc-service/src/main/java/com/thing/cqc/cqcCarbonReport/dto/CqcCarbonReportCountInfo.java @@ -9,11 +9,11 @@ public class CqcCarbonReportCountInfo { @Schema(description = "待提交") - private Long pendingSubmitted; + private Long pendingSubmitted = 0L; @Schema(description = "待发证") - private Long pendingCertification; + private Long pendingCertification = 0L; @Schema(description = "已发证") - private Long issued; + private Long issued = 0L;