From 4bec9e2b0347f8446908b9aceceb258c4b6de520 Mon Sep 17 00:00:00 2001
From: cloudroam <cloudroam>
Date: 星期五, 30 八月 2024 16:42:50 +0800
Subject: [PATCH] add: 会员增加创建人名称
---
src/main/java/com/mzl/flower/entity/point/CustomerPointDetail.java | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/src/main/java/com/mzl/flower/entity/point/CustomerPointDetail.java b/src/main/java/com/mzl/flower/entity/point/CustomerPointDetail.java
index 5825a16..3bd0fae 100644
--- a/src/main/java/com/mzl/flower/entity/point/CustomerPointDetail.java
+++ b/src/main/java/com/mzl/flower/entity/point/CustomerPointDetail.java
@@ -5,6 +5,7 @@
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
+import java.time.LocalDate;
import java.util.Date;
@@ -22,7 +23,7 @@
public class CustomerPointDetail extends BaseAutoEntity {
@ApiModelProperty("记录日期")
- private Date recordDate;
+ private LocalDate recordDate;
@ApiModelProperty("用户ID")
private String userId;
--
Gitblit v1.9.3