From 8bda5d156d97a6f86da6ee068447643a2fff8c4f Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: Mon, 02 Feb 2026 16:27:44 +0800
Subject: [PATCH] 去除多余引用
---
multi-system/src/main/java/com/gkhy/exam/system/domain/QualityInformationInside.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/multi-system/src/main/java/com/gkhy/exam/system/domain/QualityInformationInside.java b/multi-system/src/main/java/com/gkhy/exam/system/domain/QualityInformationInside.java
index b45a13b..b08eabe 100644
--- a/multi-system/src/main/java/com/gkhy/exam/system/domain/QualityInformationInside.java
+++ b/multi-system/src/main/java/com/gkhy/exam/system/domain/QualityInformationInside.java
@@ -55,7 +55,7 @@
@ApiModelProperty(value = "责任单位")
@TableField("duty_unit_id")
- private Integer dutyUnitId;
+ private String dutyUnitId;
@TableField(exist = false)
private String dutyUnitName;
@@ -66,14 +66,14 @@
@ApiModelProperty(value = "反馈单位")
@TableField("feed_unit_id")
- private Integer feedUnitId;
+ private String feedUnitId;
@TableField(exist = false)
private String feedUnitName;
@ApiModelProperty(value = "反馈人")
@TableField("feed_user_id")
- private Integer feedUserId;
+ private String feedUserId;
@TableField(exist = false)
private String feedUserName;
--
Gitblit v1.9.2