From 7b3a35cd3fff008cbe308cb45b31d2de706f1818 Mon Sep 17 00:00:00 2001 From: wxc <191104855@qq.com> Date: Mon, 10 Nov 2025 14:26:27 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=97=AE=E9=A2=98=E5=AF=BC=E5=87=BA?= =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=98=AF=E5=90=A6=E8=BF=BD=E8=B4=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/biutag/supervision/pojo/vo/ExportNegativeVo.java | 3 +++ .../biutag/supervision/service/NegativeTaskService.java | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/src/main/java/com/biutag/supervision/pojo/vo/ExportNegativeVo.java b/src/main/java/com/biutag/supervision/pojo/vo/ExportNegativeVo.java index 0debb44..9a77b77 100644 --- a/src/main/java/com/biutag/supervision/pojo/vo/ExportNegativeVo.java +++ b/src/main/java/com/biutag/supervision/pojo/vo/ExportNegativeVo.java @@ -112,6 +112,9 @@ public class ExportNegativeVo { @ExcelProperty({"核办情况","涉及人员"}) private String blames; + @ExcelProperty({"核办情况","是否追责"}) + private String isHoldAccountable; + @ExcelProperty({"核办情况","责任追责"}) private String handleResultName; diff --git a/src/main/java/com/biutag/supervision/service/NegativeTaskService.java b/src/main/java/com/biutag/supervision/service/NegativeTaskService.java index ae0f11c..c30cfb4 100644 --- a/src/main/java/com/biutag/supervision/service/NegativeTaskService.java +++ b/src/main/java/com/biutag/supervision/service/NegativeTaskService.java @@ -143,6 +143,15 @@ public class NegativeTaskService extends ServiceImpl StrUtil.isBlank(blame.getHandleResultName()) || blame.getHandleResultName().contains("不予追责"))) { + vo.setIsHoldAccountable("否"); + } else { + vo.setIsHoldAccountable("是"); + } + } for (NegativeBlame negativeBlame : blameList.stream().filter(blame -> StrUtil.isNotBlank(blame.getBlameName())).toList()) { ExportNegativeBlameVo blameVo = new ExportNegativeBlameVo(); BeanUtils.copyProperties(vo, blameVo);