From 5ff8fb8bd9d298def47437b24e77c8879cdc37d2 Mon Sep 17 00:00:00 2001
From: 陶杰 <1378534974@qq.com>
Date: 星期四, 14 十一月 2024 09:36:39 +0800
Subject: [PATCH] 1.定时任务-待付款-15分钟 2.领券中心:根据领取次数判断是否已领取 3.付款:优惠券自动领取最大优惠券

---
 src/main/java/com/mzl/flower/dto/request/comment/QueryFlowerCommentDTO.java |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/mzl/flower/dto/request/comment/QueryFlowerCommentDTO.java b/src/main/java/com/mzl/flower/dto/request/comment/QueryFlowerCommentDTO.java
index 9311207..a236bf4 100644
--- a/src/main/java/com/mzl/flower/dto/request/comment/QueryFlowerCommentDTO.java
+++ b/src/main/java/com/mzl/flower/dto/request/comment/QueryFlowerCommentDTO.java
@@ -1,10 +1,13 @@
 package com.mzl.flower.dto.request.comment;
 
+import com.fasterxml.jackson.annotation.JsonFormat;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
+import org.springframework.format.annotation.DateTimeFormat;
 
 import javax.validation.constraints.NotEmpty;
 import javax.validation.constraints.NotNull;
+import java.time.LocalDate;
 
 @Data
 public class QueryFlowerCommentDTO {
@@ -45,4 +48,24 @@
     @ApiModelProperty(value = "隐藏标识 0 显示 1隐藏")
     private Integer showFlag;
 
+    @ApiModelProperty(value = "订单编号")
+    private String orderNo;
+
+    @ApiModelProperty(value = "商品名称")
+    private String flowerName;
+
+    @ApiModelProperty(value = "评价等级")
+    private Integer commentGrade;
+
+    @ApiModelProperty(value = "评价日期-开始日期")
+    @JsonFormat(pattern="yyyy-MM-dd" ,timezone="GMT+8")
+    @DateTimeFormat(pattern="yyyy-MM-dd")
+    private LocalDate commentStartDate;
+
+    @ApiModelProperty(value = "评价日期-结束日期")
+    @JsonFormat(pattern="yyyy-MM-dd" ,timezone="GMT+8")
+    @DateTimeFormat(pattern="yyyy-MM-dd")
+    private LocalDate commentEndDate;
+
+
 }

--
Gitblit v1.9.3