From 5d337e0046579f4cf338e2bf9cb6043ee3c9d7aa Mon Sep 17 00:00:00 2001 From: "15881625488@163.com" <15881625488@163.com> Date: Fri, 27 Mar 2026 10:51:29 +0800 Subject: [PATCH] =?UTF-8?q?fix:[=E9=BA=BB=E7=B2=BE=E8=8D=AF=E7=94=B3?= =?UTF-8?q?=E8=AF=B7=E8=A1=A8=E5=8D=95]=E7=BB=99sd=E5=8F=91=E6=B6=88?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/hxhq/business/service/impl/StudyFormApplyServiceImpl.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormApplyServiceImpl.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormApplyServiceImpl.java index 81a4048..a79c425 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormApplyServiceImpl.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/service/impl/StudyFormApplyServiceImpl.java @@ -480,6 +480,13 @@ public class StudyFormApplyServiceImpl extends ServiceImpl0){ + Study study = studyService.getById(studyFormApply.getStudyId()); + String url = getUrlQz(study, "sqbd"); + String title = StudyTypeEnum.getEnumByValue(study.getType()).getText() + "【" + study.getName() + "】下领取申请单【" + studyFormApply.getBdmc() + "】填写并提交记录"; + noticeService.save(title, studyFormApply.getSdId(), url); + } }