From a6e7be2c2273b0569f57965c5fbd3ffb1c4fb8a4 Mon Sep 17 00:00:00 2001 From: jyy <935090232@qq.com> Date: Wed, 17 Mar 2021 18:49:11 +0800 Subject: [PATCH] 修改bug --- zq-erp/src/main/java/com/matrix/system/hive/bean/ServicesFlow.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/bean/ServicesFlow.java b/zq-erp/src/main/java/com/matrix/system/hive/bean/ServicesFlow.java index 5942ca4..cd25ca9 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/bean/ServicesFlow.java +++ b/zq-erp/src/main/java/com/matrix/system/hive/bean/ServicesFlow.java @@ -3,7 +3,7 @@ import java.io.Serializable; import java.util.Date; -import com.matrix.system.hive.plugin.util.DateUtils; +import com.matrix.core.tools.DateUtil; import org.springframework.format.annotation.DateTimeFormat; /** @@ -82,12 +82,12 @@ /** * 起始时间 */ - @DateTimeFormat(pattern = DateUtils.DATE_FORMAT_MM) + @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_MM) private Date beginTime; /** * 结束时间 */ - @DateTimeFormat(pattern = DateUtils.DATE_FORMAT_MM) + @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_MM) private Date endTime; -- Gitblit v1.9.1