From a72aa4bb793ec765892406c842039a71b33215b1 Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Thu, 11 Mar 2021 18:12:22 +0800 Subject: [PATCH] modify --- zq-erp/src/main/java/com/matrix/system/hive/pojo/StoreInOutRecordVO.java | 15 ++++++++++++--- 1 files changed, 12 insertions(+), 3 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/pojo/StoreInOutRecordVO.java b/zq-erp/src/main/java/com/matrix/system/hive/pojo/StoreInOutRecordVO.java index 8c1b957..3e84fff 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/pojo/StoreInOutRecordVO.java +++ b/zq-erp/src/main/java/com/matrix/system/hive/pojo/StoreInOutRecordVO.java @@ -2,7 +2,7 @@ import com.fasterxml.jackson.annotation.JsonFormat; import com.matrix.core.pojo.EntityDTO; -import com.matrix.system.hive.plugin.util.DateUtils; +import com.matrix.core.tools.DateUtil; import org.springframework.format.annotation.DateTimeFormat; import java.util.Date; @@ -69,10 +69,10 @@ /** * 用于对查询的参数 */ - @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; private Long shopId; @@ -84,6 +84,15 @@ private Long goodsSortId; + private Long id; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } public Date getCreateTime() { return createTime; -- Gitblit v1.9.1