From 4737aa3b6b8aff0945a98550cda88d4eac6953f2 Mon Sep 17 00:00:00 2001
From: wangxy <1481820854@qq.com>
Date: Wed, 25 Sep 2024 11:19:04 +0800
Subject: [PATCH] =?UTF-8?q?fix:=E8=BD=BD=E4=BD=93=E4=B8=8B=E5=8F=91?=
=?UTF-8?q?=E9=94=80=E6=AF=81=E6=8E=A5=E5=8F=A3=E6=8F=90=E4=BA=A4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../ruoyi/web/controller/manager/CheckReportManager.java | 1 +
.../java/com/ruoyi/system/domain/check/TdCheckType.java | 5 +++++
.../ruoyi/system/domain/check/dto/CheckTypeItemDTO.java | 8 ++++++++
.../com/ruoyi/system/domain/check/dto/TdCheckTypeDTO.java | 5 +++++
.../main/resources/mapper/system/TdCheckTypeMapper.xml | 3 ++-
5 files changed, 21 insertions(+), 1 deletion(-)
diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/manager/CheckReportManager.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/manager/CheckReportManager.java
index da3c56c..0fdacbf 100644
--- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/manager/CheckReportManager.java
+++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/manager/CheckReportManager.java
@@ -93,6 +93,7 @@ public class CheckReportManager {
dataList.forEach(sysDictData2 -> checkTypeItemDTOList.add(CheckTypeItemDTO.builder().typeName(sysDictData1.getDictLabel())
.checkType(sysDictData1.getDictValue())
.checkItems(sysDictData2.getDictLabel())
+ .itemsType(sysDictData2.getDictCode())
.typeContent(sysDictData2.getDictValue())
.score(sysDictData2.getCssClass())
.deductionCriteria(sysDictData2.getRemark())
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/TdCheckType.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/TdCheckType.java
index 495777b..e219881 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/TdCheckType.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/TdCheckType.java
@@ -38,6 +38,11 @@ public class TdCheckType implements Serializable {
*/
private String typeName;
+ /**
+ * 自查项类型
+ */
+ private Long itemsType;
+
/**
* 自查项
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/CheckTypeItemDTO.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/CheckTypeItemDTO.java
index 6d14e58..9fbd44a 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/CheckTypeItemDTO.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/CheckTypeItemDTO.java
@@ -26,11 +26,19 @@ public class CheckTypeItemDTO implements Serializable {
*/
private String typeName;
+
+ /**
+ * 自查项类型
+ */
+ private Long itemsType;
+
+
/**
* 自查项
*/
private String checkItems;
+
/**
* 自查内容
*/
diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/TdCheckTypeDTO.java b/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/TdCheckTypeDTO.java
index 27cec4c..7bbf482 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/TdCheckTypeDTO.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/domain/check/dto/TdCheckTypeDTO.java
@@ -36,6 +36,11 @@ public class TdCheckTypeDTO implements Serializable {
*/
private String typeName;
+ /**
+ * 自查项类型
+ */
+ private Long itemsType;
+
/**
* 自查项
diff --git a/ruoyi-system/src/main/resources/mapper/system/TdCheckTypeMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TdCheckTypeMapper.xml
index 76e54e3..5805635 100644
--- a/ruoyi-system/src/main/resources/mapper/system/TdCheckTypeMapper.xml
+++ b/ruoyi-system/src/main/resources/mapper/system/TdCheckTypeMapper.xml
@@ -12,6 +12,7 @@
+
@@ -20,7 +21,7 @@
id,check_id,check_type,
- type_content,starts,type_name,check_items,score,real_score,deduction_criteria,
+ type_content,starts,type_name,check_items,score,real_score,deduction_criteria,items_type,
remark