From b11e867b904c902374efdcbaf5152363756b76a4 Mon Sep 17 00:00:00 2001 From: Cui Zhi Feng <7426394+wuxixiaocui@user.noreply.gitee.com> Date: 星期五, 30 八月 2024 10:03:53 +0800 Subject: [PATCH] 获取用户最后收货时间 --- 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