From 4351e71d782741143a98f86f6648acd16689165f Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Fri, 27 May 2022 19:48:02 +0800
Subject: [PATCH] Merge branch 'developer' into hive2.0

---
 zq-erp/src/main/java/com/matrix/system/shopXcx/api/dto/ScoreFlowDto.java |   41 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 41 insertions(+), 0 deletions(-)

diff --git a/zq-erp/src/main/java/com/matrix/system/shopXcx/api/dto/ScoreFlowDto.java b/zq-erp/src/main/java/com/matrix/system/shopXcx/api/dto/ScoreFlowDto.java
new file mode 100644
index 0000000..ed2d87b
--- /dev/null
+++ b/zq-erp/src/main/java/com/matrix/system/shopXcx/api/dto/ScoreFlowDto.java
@@ -0,0 +1,41 @@
+package com.matrix.system.shopXcx.api.dto;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import com.matrix.core.pojo.BasePageQueryDto;
+import com.matrix.core.tools.DateUtil;
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.util.Date;
+
+@Data
+@ApiModel(value = "ScoreFlowDto", description = "积分流水查询参数接收类")
+public class ScoreFlowDto extends BasePageQueryDto {
+
+
+    @ApiModelProperty(value = "查询月份",example = "2021-03")
+    private String queryTime;
+
+    @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_DD)
+    @JsonFormat(pattern = "yyyy-MM-dd", timezone="GMT+8")
+    private Date beginTime;
+
+    @DateTimeFormat(pattern = DateUtil.DATE_FORMAT_DD)
+    @JsonFormat(pattern = "yyyy-MM-dd", timezone="GMT+8")
+    private Date endTime;
+
+
+    @ApiModelProperty(value = "收支类型 不传全部,1,收入,2支出", example = "1")
+    private Integer  revenueType;
+
+
+    @ApiModelProperty(value = "会员id", example = "1")
+    private Long  vipId;
+
+    @ApiModelProperty(value = "备注", example = "1")
+    private String  remarks;
+
+
+}

--
Gitblit v1.9.1