From c554c7ad5405bafa149dbb6429e8245f78b33ffc Mon Sep 17 00:00:00 2001 From: Helius <wangdoubleone@gmail.com> Date: Wed, 23 Dec 2020 15:59:53 +0800 Subject: [PATCH] modify --- zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrder.java | 19 ++++++++++++++++--- 1 files changed, 16 insertions(+), 3 deletions(-) diff --git a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrder.java b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrder.java index 0b49d2f..663fa32 100644 --- a/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrder.java +++ b/zq-erp/src/main/java/com/matrix/system/hive/bean/SysOrder.java @@ -1,6 +1,7 @@ package com.matrix.system.hive.bean; -import com.matrix.system.hive.plugin.util.DateUtils; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.matrix.core.tools.DateUtil; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; @@ -149,12 +150,24 @@ /** * 表单搜索条件(开始时间结束时间) */ - @DateTimeFormat(pattern = DateUtils.DATE_FORMAT_MM) + @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_MM) private Date beginTimeVo; - @DateTimeFormat(pattern = DateUtils.DATE_FORMAT_MM) + @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_MM) private Date endTimeVo; + /** + * 消费次数 + */ + private Integer times; + + public Integer getTimes() { + return times; + } + + public void setTimes(Integer times) { + this.times = times; + } public String getBeatuyId() { return beatuyId; -- Gitblit v1.9.1