From 6b41da75b7e964a03a7528fdcf36533cb363c1f7 Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期一, 30 九月 2024 10:01:35 +0800
Subject: [PATCH] add:返回操作时间
---
src/main/java/com/mzl/flower/dto/response/point/CustomerPointDetailDTO.java | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/mzl/flower/dto/response/point/CustomerPointDetailDTO.java b/src/main/java/com/mzl/flower/dto/response/point/CustomerPointDetailDTO.java
index f95a377..ae402ff 100644
--- a/src/main/java/com/mzl/flower/dto/response/point/CustomerPointDetailDTO.java
+++ b/src/main/java/com/mzl/flower/dto/response/point/CustomerPointDetailDTO.java
@@ -6,6 +6,7 @@
import lombok.Data;
import java.time.LocalDate;
+import java.time.LocalDateTime;
@Data
public class CustomerPointDetailDTO extends AbstractTransDTO {
@@ -41,4 +42,6 @@
@ApiModelProperty("积分备注")
private String remarks;
+ @ApiModelProperty("创建时间")
+ private LocalDateTime createTime;
}
--
Gitblit v1.9.3