From e7b0791388fa442f6fabcf4d9494b9f02333ca5b Mon Sep 17 00:00:00 2001 From: JR <3573153686@qq.com> Date: Tue, 19 Aug 2025 10:06:04 +0800 Subject: [PATCH] =?UTF-8?q?feat(oa):=20=E4=B8=BA=E5=8F=8D=E9=A6=88?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E8=AE=BE=E7=BD=AE=E5=88=9B=E5=BB=BA=E8=80=85?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在保存反馈信息时,添加了设置创建者昵名的方法 - 优化了反馈信息的保存流程,确保每个反馈都有创建者信息 --- .../java/com/ruoyi/oa/service/impl/OaFeedbackServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/ruoyi-oa/src/main/java/com/ruoyi/oa/service/impl/OaFeedbackServiceImpl.java b/ruoyi-oa/src/main/java/com/ruoyi/oa/service/impl/OaFeedbackServiceImpl.java index cd56d92..8274895 100644 --- a/ruoyi-oa/src/main/java/com/ruoyi/oa/service/impl/OaFeedbackServiceImpl.java +++ b/ruoyi-oa/src/main/java/com/ruoyi/oa/service/impl/OaFeedbackServiceImpl.java @@ -95,6 +95,7 @@ public class OaFeedbackServiceImpl implements IOaFeedbackService { OaFeedback add = BeanUtil.toBean(bo, OaFeedback.class); validEntityBeforeSave(add); + add.setCreateBy(LoginHelper.getNickName()); boolean flag = baseMapper.insert(add) > 0; if (flag) { bo.setFeedbackId(add.getFeedbackId());