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;