From fd006517c809d4f5fab41da3d44bb75043163209 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Fri, 28 Nov 2025 14:44:34 +0800 Subject: [PATCH] =?UTF-8?q?admin=20task=20=E5=88=97=E8=A1=A8=E6=96=87?= =?UTF-8?q?=E6=A1=88=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../red/circle/other/app/service/AdminTaskServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/AdminTaskServiceImpl.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/AdminTaskServiceImpl.java index 745b3403..fe949353 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/AdminTaskServiceImpl.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/AdminTaskServiceImpl.java @@ -100,8 +100,8 @@ public class AdminTaskServiceImpl implements AdminTaskService { // 设置周期信息 if (!records.isEmpty()) { - summary.setCycleStartDate(records.get(0).getCycleStartDate().toString()); - summary.setCycleEndDate(records.get(0).getCycleEndDate().toString()); + summary.setCycleStartDate(records.get(0).getCycleStartDate().toString().replace("-", ".")); + summary.setCycleEndDate(records.get(0).getCycleEndDate().toString().replace("-", ".")); } return summary;