From 80248d648950fb7ce7dae78cb36bfd704f797f6f Mon Sep 17 00:00:00 2001 From: buaixuexideshitongxue <2936013465@qq.com> Date: Tue, 11 Aug 2026 16:54:05 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=20=E5=AF=BC=E5=87=BA=E5=8A=A0?= =?UTF-8?q?=E4=B8=8A=E5=8D=95=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../supervision/pojo/vo/warning/WarningProblemExcelVo.java | 6 ++++++ .../service/Warning/impl/WarningBusinessServiceImpl.java | 2 ++ 2 files changed, 8 insertions(+) diff --git a/src/main/java/com/biutag/supervision/pojo/vo/warning/WarningProblemExcelVo.java b/src/main/java/com/biutag/supervision/pojo/vo/warning/WarningProblemExcelVo.java index cbebf52..f760844 100644 --- a/src/main/java/com/biutag/supervision/pojo/vo/warning/WarningProblemExcelVo.java +++ b/src/main/java/com/biutag/supervision/pojo/vo/warning/WarningProblemExcelVo.java @@ -12,6 +12,12 @@ public class WarningProblemExcelVo { @ExcelProperty(value = "项目名称") private String reportName; + @ExcelProperty(value = "审计单位") + private String auditUnitStr; + + @ExcelProperty(value = "项目单位") + private String projectUnitStr; + @ExcelProperty(value = "预警类型") private String type; diff --git a/src/main/java/com/biutag/supervision/service/Warning/impl/WarningBusinessServiceImpl.java b/src/main/java/com/biutag/supervision/service/Warning/impl/WarningBusinessServiceImpl.java index 103acd6..032c55a 100644 --- a/src/main/java/com/biutag/supervision/service/Warning/impl/WarningBusinessServiceImpl.java +++ b/src/main/java/com/biutag/supervision/service/Warning/impl/WarningBusinessServiceImpl.java @@ -465,6 +465,8 @@ public class WarningBusinessServiceImpl implements WarningBusinessService { WarningProblemExcelVo vo = new WarningProblemExcelVo(); vo.setReportId(record.getId()); vo.setReportName(record.getReportName()); + vo.setAuditUnitStr(record.getAuditUnitStr()); + vo.setProjectUnitStr(record.getProjectUnitStr()); vo.setType(content.getType()); vo.setTitle(content.getTitle()); vo.setContent(content.getContent());