From 73ae7054c7b03d777e2a361d76086e61bb257018 Mon Sep 17 00:00:00 2001 From: memorylkf <312904636@qq.com> Date: Mon, 9 Feb 2026 18:44:12 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20[=E6=A8=A1=E6=9D=BF=E7=AE=A1=E7=90=86]?= =?UTF-8?q?=20=E5=A2=9E=E5=8A=A0=E6=A3=80=E6=9F=A5=E7=89=88=E5=88=9B?= =?UTF-8?q?=E5=BB=BA=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java index c989c94..ded22ba 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormFillServiceImpl.java @@ -650,6 +650,9 @@ public class StudyFormFillServiceImpl extends ServiceImpl jcbList = JSONArray.parseArray(studyFormFill.getJcbList(),Jcb.class); if(jcbList!=null && jcbList.size()>0){ + for(Jcb jcb : jcbList){ + jcb.setCjr(SecurityUtils.getNickName()); + } jcbService.saveBatch(jcbList); } }