From 8eda088db63ff198cbcd51bf0599531ed006cb84 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Sun, 27 Dec 2020 12:26:18 +0800 Subject: [PATCH] modify --- 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